From 6f0c65bf645acd72e74a26af070cea96011e5f51 Mon Sep 17 00:00:00 2001
From: "Pedro M. Baeza"
Date: Wed, 27 Jan 2016 20:38:30 +0100
Subject: [PATCH 1/7] [FIX] account_chart_update: Don't write code on account
update
As there's a constraint that forbids to write the code of the account
if it has moves, we delete the corresponding entry on update only,
because the method that prepares the values is the same for new and
existing accounts.
---
account_chart_update/wizard/wizard_chart_update.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/account_chart_update/wizard/wizard_chart_update.py b/account_chart_update/wizard/wizard_chart_update.py
index 005c3a2f5..b976995a1 100644
--- a/account_chart_update/wizard/wizard_chart_update.py
+++ b/account_chart_update/wizard/wizard_chart_update.py
@@ -1026,12 +1026,14 @@ class WizardUpdateChartsAccounts(models.TransientModel):
else:
# Update the account
account = wiz_account.update_account_id
+ # Don't write again the same code - it may give an error
+ code = vals.pop('code')
try:
account.write(vals)
- log.add(_("Updated account %s.\n") % vals['code'])
+ log.add(_("Updated account %s.\n") % code)
except (exceptions.Warning, except_orm, except_osv) as ex:
log.add(_("Exception writing account %s: %s - %s.\n") %
- (vals['code'], ex.name, ex.value), True)
+ (code, ex.name, ex.value), True)
# Set this account as the parent of the accounts that seem to
# be its children (brothers starting with the same code).
if self.update_children_accounts_parent:
From fef9f9a8eb20bca3fed29e62bc68b86300cd4908 Mon Sep 17 00:00:00 2001
From: PabloCM
Date: Sun, 21 Feb 2016 20:05:33 +0100
Subject: [PATCH 2/7] [FIX] Include acc templates from parent CoA templates
---
.../wizard/wizard_chart_update.py | 25 +++++++++++++------
1 file changed, 17 insertions(+), 8 deletions(-)
diff --git a/account_chart_update/wizard/wizard_chart_update.py b/account_chart_update/wizard/wizard_chart_update.py
index b976995a1..3324dcc9d 100644
--- a/account_chart_update/wizard/wizard_chart_update.py
+++ b/account_chart_update/wizard/wizard_chart_update.py
@@ -697,14 +697,8 @@ class WizardUpdateChartsAccounts(models.TransientModel):
notes += _("The reconcile is different.\n")
return notes
- @api.one
- def _find_accounts(self, mapping_accounts):
- """Search for, and load, account templates to create/update."""
- wiz_accounts = self.env['wizard.update.charts.accounts.account']
- # Remove previous accounts
- self.account_ids.unlink()
- # Search for new / updated accounts
- root_account_id = self.chart_template_id.account_root_id.id
+ def _acc_tmpl_to_search_criteria(self, chart_template):
+ root_account_id = chart_template.account_root_id.id
acc_templ_criteria = [
('chart_template_id', '=', self.chart_template_id.id)]
if root_account_id:
@@ -712,6 +706,21 @@ class WizardUpdateChartsAccounts(models.TransientModel):
acc_templ_criteria += [
'&', ('parent_id', 'child_of', [root_account_id]),
('chart_template_id', '=', False)]
+ if chart_template.parent_id:
+ acc_templ_criteria = ['|'] + acc_templ_criteria
+ acc_templ_criteria += self._acc_tmpl_to_search_criteria(
+ chart_template.parent_id)
+ return acc_templ_criteria
+
+ @api.one
+ def _find_accounts(self, mapping_accounts):
+ """Search for, and load, account templates to create/update."""
+ wiz_accounts = self.env['wizard.update.charts.accounts.account']
+ # Remove previous accounts
+ self.account_ids.unlink()
+ # Search for new / updated accounts
+ acc_templ_criteria = self._acc_tmpl_to_search_criteria(
+ self.chart_template_id)
account_templates = self.env['account.account.template'].search(
acc_templ_criteria)
for account_template in account_templates:
From 5e1c08ce7412846c6b8f1613dbd073faabc76a56 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Bidoul?=
Date: Mon, 21 Mar 2016 10:47:34 +0100
Subject: [PATCH 3/7] [FIX] account_chart_update:
* Process price_include field
* Detect change in price_include field
---
account_chart_update/wizard/wizard_chart_update.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/account_chart_update/wizard/wizard_chart_update.py b/account_chart_update/wizard/wizard_chart_update.py
index 3324dcc9d..e3af7a6fd 100644
--- a/account_chart_update/wizard/wizard_chart_update.py
+++ b/account_chart_update/wizard/wizard_chart_update.py
@@ -601,6 +601,8 @@ class WizardUpdateChartsAccounts(models.TransientModel):
notes += _("The include base amount field is different.\n")
if tax.type_tax_use != tax_template.type_tax_use:
notes += _("The type tax use field is different.\n")
+ if tax.price_include != tax_template.price_include:
+ notes += _("The Tax Included in Price field is different.\n")
# compare tax code fields
if tax.base_code_id != self.map_tax_code_template(
tax_template.base_code_id, mapping_tax_codes):
@@ -922,7 +924,8 @@ class WizardUpdateChartsAccounts(models.TransientModel):
'include_base_amount': tax_template.include_base_amount,
'description': tax_template.description,
'company_id': self.company_id.id,
- 'type_tax_use': tax_template.type_tax_use
+ 'type_tax_use': tax_template.type_tax_use,
+ 'price_include': tax_template.price_include,
}
@api.multi
From 21db6555ad73b2c50d15105d77b27d2e6480dd0a Mon Sep 17 00:00:00 2001
From: "Pedro M. Baeza"
Date: Sun, 25 Oct 2015 11:24:01 +0100
Subject: [PATCH 4/7] OCA Transbot updated translations from Transifex
---
account_chart_update/i18n/am.po | 852 ++++++++++++++++++++++++++
account_chart_update/i18n/ar.po | 198 ++++--
account_chart_update/i18n/bs.po | 198 ++++--
account_chart_update/i18n/ca.po | 210 +++++--
account_chart_update/i18n/ca_ES.po | 198 ++++--
account_chart_update/i18n/cs.po | 198 ++++--
account_chart_update/i18n/de.po | 265 +++++---
account_chart_update/i18n/el_GR.po | 852 ++++++++++++++++++++++++++
account_chart_update/i18n/en_GB.po | 198 ++++--
account_chart_update/i18n/es.po | 220 +++++--
account_chart_update/i18n/es_AR.po | 198 ++++--
account_chart_update/i18n/es_CR.po | 198 ++++--
account_chart_update/i18n/es_EC.po | 198 ++++--
account_chart_update/i18n/es_ES.po | 200 ++++--
account_chart_update/i18n/es_MX.po | 198 ++++--
account_chart_update/i18n/es_VE.po | 198 ++++--
account_chart_update/i18n/et.po | 198 ++++--
account_chart_update/i18n/fi.po | 852 ++++++++++++++++++++++++++
account_chart_update/i18n/fr.po | 198 ++++--
account_chart_update/i18n/gl.po | 198 ++++--
account_chart_update/i18n/gl_ES.po | 198 ++++--
account_chart_update/i18n/gu.po | 198 ++++--
account_chart_update/i18n/hr.po | 245 +++++---
account_chart_update/i18n/hu.po | 198 ++++--
account_chart_update/i18n/it.po | 201 ++++--
account_chart_update/i18n/ja.po | 198 ++++--
account_chart_update/i18n/lt.po | 198 ++++--
account_chart_update/i18n/mk.po | 198 ++++--
account_chart_update/i18n/mn.po | 198 ++++--
account_chart_update/i18n/nb.po | 198 ++++--
account_chart_update/i18n/nl.po | 198 ++++--
account_chart_update/i18n/nl_BE.po | 198 ++++--
account_chart_update/i18n/pl.po | 198 ++++--
account_chart_update/i18n/pt.po | 208 +++++--
account_chart_update/i18n/pt_BR.po | 198 ++++--
account_chart_update/i18n/pt_PT.po | 852 ++++++++++++++++++++++++++
account_chart_update/i18n/ro.po | 198 ++++--
account_chart_update/i18n/ru.po | 198 ++++--
account_chart_update/i18n/sk.po | 852 ++++++++++++++++++++++++++
account_chart_update/i18n/sl.po | 202 ++++--
account_chart_update/i18n/sr@latin.po | 198 ++++--
account_chart_update/i18n/sv.po | 198 ++++--
account_chart_update/i18n/th.po | 198 ++++--
account_chart_update/i18n/tr.po | 198 ++++--
account_chart_update/i18n/vi.po | 198 ++++--
account_chart_update/i18n/zh_CN.po | 198 ++++--
account_chart_update/i18n/zh_TW.po | 198 ++++--
47 files changed, 10066 insertions(+), 2677 deletions(-)
create mode 100644 account_chart_update/i18n/am.po
create mode 100644 account_chart_update/i18n/el_GR.po
create mode 100644 account_chart_update/i18n/fi.po
create mode 100644 account_chart_update/i18n/pt_PT.po
create mode 100644 account_chart_update/i18n/sk.po
diff --git a/account_chart_update/i18n/am.po b/account_chart_update/i18n/am.po
new file mode 100644
index 000000000..d95c97990
--- /dev/null
+++ b/account_chart_update/i18n/am.po
@@ -0,0 +1,852 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_chart_update
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: account-financial-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
+"Last-Translator: OCA Transbot \n"
+"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/am/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: am\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,code_digits:0
+msgid "# of digits"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
+#, python-format
+msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,account_id:0
+msgid "Account template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
+msgid "Account that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_account_id:0
+msgid "Account to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,account_ids:0
+msgid "Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:account.tax.code,active:0
+msgid "Active"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,chart_template_id:0
+msgid "Chart Template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Chart of Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Close"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
+#, python-format
+msgid "Code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,continue_on_errors:0
+msgid "Continue on errors"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Create/Update"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
+#, python-format
+msgid "Created account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_uid:0
+#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
+#: field:wizard.update.charts.accounts.tax,create_uid:0
+#: field:wizard.update.charts.accounts.tax.code,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_date:0
+#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
+#: field:wizard.update.charts.accounts.tax,create_date:0
+#: field:wizard.update.charts.accounts.tax.code,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
+#, python-format
+msgid "Created or updated fiscal position %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
+#, python-format
+msgid "Created tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
+#, python-format
+msgid "Created tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
+#, python-format
+msgid "Deactivated %d tax codes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#, python-format
+msgid "Deactivated %d taxes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
+#, python-format
+msgid "Exception creating account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
+#, python-format
+msgid "Exception setting the parent of account %s children: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
+#, python-format
+msgid "Exception writing account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_account:0
+msgid "Existing accounts are updated. Accounts are searched by code."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_fiscal_position:0
+msgid ""
+"Existing fiscal positions are updated. Fiscal positions are searched by "
+"name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax_code:0
+msgid "Existing tax codes are updated. Tax codes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax:0
+msgid "Existing taxes are updated. Taxes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
+msgid "Fiscal position template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
+msgid ""
+"Fiscal position that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
+msgid "Fiscal position to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,fiscal_position_ids:0
+msgid "Fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,lang:0
+msgid ""
+"For records searched by name (taxes, tax codes, fiscal positions), the "
+"template name will be matched against the record name on this language."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,id:0
+#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
+#: field:wizard.update.charts.accounts.fiscal.position,id:0
+#: field:wizard.update.charts.accounts.tax,id:0
+#: field:wizard.update.charts.accounts.tax.code,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,continue_on_errors:0
+msgid ""
+"If set, the wizard will continue to the next step even if there are minor "
+"errors (for example the parent account of a new account couldn't be set)."
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"If you leave these options set, the wizard will not just create new records,"
+" but also update records with changes (i.e. different tax amount)"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,lang:0
+msgid "Language"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_uid:0
+#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
+#: field:wizard.update.charts.accounts.tax,write_uid:0
+#: field:wizard.update.charts.accounts.tax.code,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización por"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_date:0
+#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
+#: field:wizard.update.charts.accounts.tax,write_date:0
+#: field:wizard.update.charts.accounts.tax.code,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Log"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,log:0
+msgid "Messages and Errors"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
+#, python-format
+msgid "Name not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
+#, python-format
+msgid "Name or code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
+#, python-format
+msgid "Name or description not found."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "New tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "New template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Next"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,code_digits:0
+msgid ""
+"No. of digits to use for account code. Make sure it is the same number as "
+"existing accounts."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#, python-format
+msgid "None"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Note: Not all the fields are tested for changes, just the main ones"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
+#: field:wizard.update.charts.accounts.fiscal.position,notes:0
+#: field:wizard.update.charts.accounts.tax,notes:0
+#: field:wizard.update.charts.accounts.tax.code,notes:0
+msgid "Notes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
+#, python-format
+msgid ""
+"One or more errors detected!\n"
+"\n"
+"%s"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Other options"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Previous"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Records to create/update"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,state:0
+msgid "Status"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 1"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 2"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of created objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of deleted objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of updated objects"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
+#, python-format
+msgid "Tax %s: The collected account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
+#, python-format
+msgid "Tax %s: The paid account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_account_tax_code
+msgid "Tax Code"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
+msgid "Tax code template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
+msgid "Tax code that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Tax code to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
+msgid "Tax code to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_code_ids:0
+msgid "Tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
+#, python-format
+msgid "Tax is disabled.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
+#, python-format
+msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,tax_id:0
+msgid "Tax template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
+msgid "Tax that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Tax to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,update_tax_id:0
+msgid "Tax to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_ids:0
+msgid "Taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
+#, python-format
+msgid "The account_collected field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
+#, python-format
+msgid "The account_paid field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#, python-format
+msgid "The amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
+#, python-format
+msgid "The applicable type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
+#, python-format
+msgid "The base sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#, python-format
+msgid "The base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#, python-format
+msgid "The child depend field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#, python-format
+msgid "The code field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
+#, python-format
+msgid "The description field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#, python-format
+msgid "The domain field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
+#, python-format
+msgid "The include base amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
+#, python-format
+msgid "The info field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
+#, python-format
+msgid "The name field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
+#, python-format
+msgid "The name is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
+#, python-format
+msgid "The notprintable field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
+#, python-format
+msgid "The parent field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
+#, python-format
+msgid "The parent_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
+#, python-format
+msgid "The python compute field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
+#, python-format
+msgid "The reconcile is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
+#, python-format
+msgid "The ref_base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
+#, python-format
+msgid "The ref_tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
+#, python-format
+msgid "The sequence field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
+#, python-format
+msgid "The sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#, python-format
+msgid "The tax sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#, python-format
+msgid "The tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
+#, python-format
+msgid "The template has accounts the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#, python-format
+msgid "The template has taxes the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#, python-format
+msgid "The type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
+#, python-format
+msgid "The type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
+#, python-format
+msgid "The type tax use field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
+#, python-format
+msgid "The user type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#, python-format
+msgid "To deactivate: not in the template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
+#: field:wizard.update.charts.accounts.fiscal.position,type:0
+#: field:wizard.update.charts.accounts.tax,type:0
+#: field:wizard.update.charts.accounts.tax.code,type:0
+msgid "Type"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_account:0
+msgid "Update accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
+#: model:ir.ui.menu,name:account_chart_update.menu_wizard
+msgid "Update chart of accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update chart of accounts from a template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
+msgid "Update chart wizard"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid "Update children accounts parent"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_fiscal_position:0
+msgid "Update fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update records?"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax_code:0
+msgid "Update tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax:0
+msgid "Update taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid ""
+"Update the parent of accounts that seem (based on the code) to be children "
+"of the newly created ones. If you had an account 430 with a child 4300000, "
+"and a 4300 account is created, the 4300000 parent will be set to 4300."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
+#, python-format
+msgid "Updated account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
+#, python-format
+msgid "Updated tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Updated tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
+#, python-format
+msgid "Updated tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Updated template"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Wizard completed"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "or"
+msgstr "o"
diff --git a/account_chart_update/i18n/ar.po b/account_chart_update/i18n/ar.po
index d33fbe094..c5fb124c0 100644
--- a/account_chart_update/i18n/ar.po
+++ b/account_chart_update/i18n/ar.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "نشِط"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "إغلاق"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "الملاحظات"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/bs.po b/account_chart_update/i18n/bs.po
index 1adda5646..77c0808c4 100644
--- a/account_chart_update/i18n/bs.po
+++ b/account_chart_update/i18n/bs.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktivno"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Zatvori"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Zabilješke"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/ca.po b/account_chart_update/i18n/ca.po
index e684636a4..f61816f32 100644
--- a/account_chart_update/i18n/ca.po
+++ b/account_chart_update/i18n/ca.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeig de compte no trobat en la instància de posició fiscal: %s -> %s.\n"
@@ -38,6 +38,11 @@ msgstr "Plantilla de comptes"
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr "Comptes"
msgid "Active"
msgstr "Actiu"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Tanca"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr "Crea/Actualitza"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr "Creat compte %s.\n"
@@ -104,65 +120,67 @@ msgstr "Creat compte %s.\n"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "Creat per"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "Creat el"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr "Creada o actualitzada posició fiscal %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr "Creat impost %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr "Creat codi d'impost %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr "Excepció creant compte %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr "Excepció establint el pare dels fills del compte %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr "Excepció escrivint compte %s: %s - %s.\n"
@@ -189,6 +207,24 @@ msgstr "Els codis d'impostos existents seran actualitzats. Els codis d'impostos
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Els impostos existents seran actualitzats. Els impostos es cercaran per nom."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,11 +257,12 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
msgid "ID"
-msgstr ""
+msgstr "ID"
#. module: account_chart_update
#: help:wizard.update.charts.accounts,continue_on_errors:0
@@ -249,20 +286,22 @@ msgstr "Idioma"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "Darrera Actualització per"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "Darrera Actualització el"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr "Missatges i errors"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notes"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr "Anterior"
msgid "Records to create/update"
msgstr "Registres a crear/actualitzar"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr "Resum d'objectes actualitzats"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr "Impost %s: No s'ha pogut establir el compte a rebre.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr "Impost %s: No s'ha pogut establir el compte a pagar.\n"
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr "Codis d'impostos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeig de compte no trobat en la instància de la posició fiscal: %s -> %s.\n"
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr "Impostos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr "El camp import és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr "El camp tipus aplicable és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr "El camp signe base és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr "El camp impost en fills és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr "El camp codi és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr "El camp domini és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr "El camp incloure en import base és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr "El camp info és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr "El nom és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr "El camp càlcul Python és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr "El camp reconciliar és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr "El camp seqüència és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr "El camp signe és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr "El camp signe d'impost és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr "La plantilla té comptes que la instància de posició fiscal no.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr "La plantilla té impostos que la instància de posició fiscal no té.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr "El camp tipus és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr "El tipus és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr "El camp aplicació impost és diferent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr "El tipus d'usuari és diferent.\n"
@@ -661,19 +718,20 @@ msgstr "El tipus d'usuari és diferent.\n"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr "Assistent per a actualitzar el pla comptable"
msgid "Update children accounts parent"
msgstr "Actualitza pare dels comptes fills"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr "Actualitza codis d'impostos"
msgid "Update taxes"
msgstr "Actualitza impostos"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr "Actualitza el pare dels comptes que semblen (basant-se en el codi) ser fills dels comptes acabats de crear. Si teniu un compte 430 amb un fill 4300000 i es crea un compte 4300, el compte 4300 serà el nou pare del compte 4300000."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr "Actualitzat compte %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr "Actualitzat impost %s.\n"
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr "Actualitzat codi d'impost %s.\n"
@@ -767,6 +836,11 @@ msgstr "Actualitzat codi d'impost %s.\n"
msgid "Updated template"
msgstr "Plantilla actualitzada"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
@@ -775,4 +849,4 @@ msgstr "Assistent completat"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "or"
-msgstr ""
+msgstr "o"
diff --git a/account_chart_update/i18n/ca_ES.po b/account_chart_update/i18n/ca_ES.po
index 4f6ebcbe9..d6133bd4d 100644
--- a/account_chart_update/i18n/ca_ES.po
+++ b/account_chart_update/i18n/ca_ES.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca_ES/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr "Comptes"
msgid "Active"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr "Crea/Actualitza"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr "Els codis d'impostos existents seran actualitzats. Els codis d'impostos
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Els impostos existents seran actualitzats. Els impostos es cercaran per nom."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr "Anterior"
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr "Codis d'impostos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr "Impostos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr "Assistent per a actualitzar el pla comptable"
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr "Actualitza codis d'impostos"
msgid "Update taxes"
msgstr "Actualitza impostos"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/cs.po b/account_chart_update/i18n/cs.po
index 87b2804f4..3d31d4abd 100644
--- a/account_chart_update/i18n/cs.po
+++ b/account_chart_update/i18n/cs.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/cs/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktivní"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Zavřít"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Poznámky"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/de.po b/account_chart_update/i18n/de.po
index 9f914df51..395f9b6fa 100644
--- a/account_chart_update/i18n/de.po
+++ b/account_chart_update/i18n/de.po
@@ -3,12 +3,13 @@
# * account_chart_update
#
# Translators:
+# Rudolf Schnapka , 2015
msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +24,7 @@ msgid "# of digits"
msgstr "Anz. Ziffern"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Kontenzuordnung in dieser Instanz der Bilanzposition nicht gefunden: %s -> %s.\n"
@@ -36,6 +37,11 @@ msgstr "Kontovorlage"
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
msgid "Account that needs to be updated (new or updated in the template)."
+msgstr "Konto, welches aktualisiert werden muss (neue oder geänderte Vorlage)."
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
msgstr ""
#. module: account_chart_update
@@ -54,6 +60,17 @@ msgstr "Konten"
msgid "Active"
msgstr "Aktiv"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +92,7 @@ msgid "Close"
msgstr "Schließen"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr "Schlüssel nicht gefunden."
@@ -96,7 +113,7 @@ msgid "Create/Update"
msgstr "Anlegen/Aktualisieren"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr "Konto %s angelegt.\n"
@@ -104,65 +121,67 @@ msgstr "Konto %s angelegt.\n"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "Erstellt von"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "Erstellt am"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr "Angelegt oder aktualisierte Bilanzposition %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr "Angelegte Steuer %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr "Steuerschlüssel %s angelegt.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
-msgstr ""
+msgstr "%d Steuerschlüssel deaktiviert\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
-msgstr ""
+msgstr "%d Steuern deaktiviert\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr "Ausnahme bei Kontenanlage %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr "Ausnahme beim Setzen des Übergeordneten von Konto %s, Untergeordnete %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr "Ausnahme beim Schreiben des Kontos %s: %s - %s.\n"
@@ -189,6 +208,24 @@ msgstr "Bestehende Steuerschlüssel sind aktualisiert. Steuerschlüssel werden n
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Bestehende Steuern sind aktualisiert. Steuern werden nach Name gesucht."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -198,7 +235,7 @@ msgstr "Vorlage zur Bilanzposition"
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
msgid ""
"Fiscal position that needs to be updated (new or updated in the template)."
-msgstr ""
+msgstr "Steuerzuordnung, die aktualisiert werden muss (neue oder geänderte Vorlage)"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
@@ -221,11 +258,12 @@ msgstr "Bei Datensätzen die nach Name gesucht werden (Steuer, Steuerschlüssel,
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
msgid "ID"
-msgstr ""
+msgstr "ID"
#. module: account_chart_update
#: help:wizard.update.charts.accounts,continue_on_errors:0
@@ -249,20 +287,22 @@ msgstr "Sprache"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "Zuletzt geändert von"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "Zuletzt geändert am"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
@@ -275,19 +315,19 @@ msgid "Messages and Errors"
msgstr "Meldungen und Fehler"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr "Name nicht gefunden."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr "Name oder Schlüssel nicht gefunden."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr "Name oder Beschreibung nicht gefunden."
@@ -295,7 +335,7 @@ msgstr "Name oder Beschreibung nicht gefunden."
#. module: account_chart_update
#: selection:wizard.update.charts.accounts.tax.code,type:0
msgid "New tax code"
-msgstr ""
+msgstr "Neuer Steuerschlüssel"
#. module: account_chart_update
#: selection:wizard.update.charts.accounts.account,type:0
@@ -317,7 +357,7 @@ msgid ""
msgstr "Anzahl Ziffern für den Kontoschlüssel. Stellen Sie bitte sicher, dass diese mit bestehenden Konten übereinstimmt."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr "Keine"
@@ -329,6 +369,7 @@ msgstr "Hinweis: Nicht alle Felder wurden auf Änderungen hin geprüft, nur die
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +377,7 @@ msgid "Notes"
msgstr "Hinweise"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +400,17 @@ msgstr "Voriger"
msgid "Records to create/update"
msgstr "Zu aktualisierende/erstellende Datensätze"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -382,7 +434,7 @@ msgstr "Zusammenfassung erstellter Objekte"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Summary of deleted objects"
-msgstr ""
+msgstr "Übersicht gelöschter Objekte"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
@@ -390,13 +442,13 @@ msgid "Summary of updated objects"
msgstr "Zusammenfassung aktualisierter Objekte"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr "Steuer %s: Das gefundene Konto kann nicht gesetzt werden.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr "Steuer %s: Das Konto Bezahlt kann nicht gesetzt werden.\n"
@@ -404,7 +456,7 @@ msgstr "Steuer %s: Das Konto Bezahlt kann nicht gesetzt werden.\n"
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_account_tax_code
msgid "Tax Code"
-msgstr ""
+msgstr "Steuerschlüssel"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
@@ -414,12 +466,12 @@ msgstr "Steuerschlüssel-Vorlage"
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
msgid "Tax code that needs to be updated (new or updated in the template)."
-msgstr ""
+msgstr "Steuerschlüssel, der aktualisiert werden muss (neue oder geänderte Vorlage)"
#. module: account_chart_update
#: selection:wizard.update.charts.accounts.tax.code,type:0
msgid "Tax code to deactivate"
-msgstr ""
+msgstr "Zu deaktivierender Steuerschlüssel"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
@@ -433,13 +485,13 @@ msgid "Tax codes"
msgstr "Steuerschlüssel"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
-msgstr ""
+msgstr "Steuer ist deaktiviert.\n\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Steuerzuordnung für die Bilanzposition der Instanz nicht gefunden: %s -> %s.\n"
@@ -452,12 +504,12 @@ msgstr "Steuervorlage"
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
msgid "Tax that needs to be updated (new or updated in the template)."
-msgstr ""
+msgstr "Steuer, die aktualisiert werden muss (neue oder geänderte Vorlage)."
#. module: account_chart_update
#: selection:wizard.update.charts.accounts.tax,type:0
msgid "Tax to deactivate"
-msgstr ""
+msgstr "Zu deaktivierende Steuer"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.tax,update_tax_id:0
@@ -471,189 +523,195 @@ msgid "Taxes"
msgstr "Steuern"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
-msgstr ""
+msgstr "Das account_collected -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
-msgstr ""
+msgstr "Das account_paid -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr "Das Feld Betrag weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr "Das Feld Anwendbare Art weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr "Das Basis-Vorzeichen-Feld weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
-msgstr ""
+msgstr "Das base_code_id -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr "Das Feld Abhängig Untergeordnet weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr "Das Schlüsselfeld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
-msgstr ""
+msgstr "Das description -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr "Das Feld Domäne weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr "Das Feld \"Basisbetrag einschließen\" weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr "Das Info-Feld weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
-msgstr ""
+msgstr "Das name -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr "Der Name weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
-msgstr ""
+msgstr "Das notprintable -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
-msgstr ""
+msgstr "Das parent -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
-msgstr ""
+msgstr "Das parent_id -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr "Das Feld Python-Berechnung weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr "Der Ausgleich weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
-msgstr ""
+msgstr "Das ref_base_code_id -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
-msgstr ""
+msgstr "Das ref_tax_code_id -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr "Das Folgen-Feld weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr "Das Feld Vorzeichen weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr "Das Feld Steuervorzeichen weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
-msgstr ""
+msgstr "Das tax_code_id -Feld unterscheidet sich.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr "Die Vorlage enthält Konten, die diese Instanz der Bilanz nicht beinhaltet.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr "Die Vorlage beinhaltet Steuern, die in der aktuellen Bilanzposition nicht vorhanden sind.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr "Das Art-Feld weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr "Die Art weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr "Das Feld Steuerartverwendung weicht ab.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr "Die Anwenderart weicht ab.\n"
@@ -661,19 +719,20 @@ msgstr "Die Anwenderart weicht ab.\n"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
-msgstr "Der Assistent wird Ihre Konten, Steuern und Bilanzzuordnungen gemäß der Kontenplanvorlage, aktualisieren"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
-#, python-format
-msgid "To deactivate: not in the template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#, python-format
+msgid "To deactivate: not in the template"
+msgstr "Zum Deaktivieren: Nicht in der Vorlage"
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +757,7 @@ msgstr "Kontenplan aus Vorlage aktualisieren"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +769,11 @@ msgstr "Kontenplan-Assistent"
msgid "Update children accounts parent"
msgstr "Aktualisiere übergeordnete Konten"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +794,11 @@ msgstr "Aktualisierte Steuerschlüssel"
msgid "Update taxes"
msgstr "Steuern aktualisieren"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +808,13 @@ msgid ""
msgstr "Aktualisiere die übergeordneten Konten, die (basierend auf dem Schlüssel) als untergeordnete der neu angelegten erscheinen. Wenn Sie ein Konto 430 mit einem untergeordneten 4300000 hätten und Konto 4300 wird angelegt, dann wird das Übergeordnete zu 4300000 auf 4300 gesetzt."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr "Aktualisiertes Konto %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr "Aktualisierte Steuer %s.\n"
@@ -752,10 +822,10 @@ msgstr "Aktualisierte Steuer %s.\n"
#. module: account_chart_update
#: selection:wizard.update.charts.accounts.tax.code,type:0
msgid "Updated tax code"
-msgstr ""
+msgstr "Steuerschlüssel aktualisiert"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr "Aktualisierter Steuerschlüssel %s.\n"
@@ -767,6 +837,11 @@ msgstr "Aktualisierter Steuerschlüssel %s.\n"
msgid "Updated template"
msgstr "Aktualisierte Vorlage"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/el_GR.po b/account_chart_update/i18n/el_GR.po
new file mode 100644
index 000000000..3fc854eb2
--- /dev/null
+++ b/account_chart_update/i18n/el_GR.po
@@ -0,0 +1,852 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_chart_update
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: account-financial-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
+"Last-Translator: OCA Transbot \n"
+"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/el_GR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: el_GR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,code_digits:0
+msgid "# of digits"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
+#, python-format
+msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,account_id:0
+msgid "Account template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
+msgid "Account that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_account_id:0
+msgid "Account to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,account_ids:0
+msgid "Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:account.tax.code,active:0
+msgid "Active"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Cancel"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,chart_template_id:0
+msgid "Chart Template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Chart of Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Close"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
+#, python-format
+msgid "Code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,company_id:0
+msgid "Company"
+msgstr "Εταιρεία"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,continue_on_errors:0
+msgid "Continue on errors"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Create/Update"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
+#, python-format
+msgid "Created account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_uid:0
+#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
+#: field:wizard.update.charts.accounts.tax,create_uid:0
+#: field:wizard.update.charts.accounts.tax.code,create_uid:0
+msgid "Created by"
+msgstr "Δημιουργήθηκε από "
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_date:0
+#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
+#: field:wizard.update.charts.accounts.tax,create_date:0
+#: field:wizard.update.charts.accounts.tax.code,create_date:0
+msgid "Created on"
+msgstr "Δημιουργήθηκε στις"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
+#, python-format
+msgid "Created or updated fiscal position %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
+#, python-format
+msgid "Created tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
+#, python-format
+msgid "Created tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
+#, python-format
+msgid "Deactivated %d tax codes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#, python-format
+msgid "Deactivated %d taxes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
+#, python-format
+msgid "Exception creating account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
+#, python-format
+msgid "Exception setting the parent of account %s children: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
+#, python-format
+msgid "Exception writing account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_account:0
+msgid "Existing accounts are updated. Accounts are searched by code."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_fiscal_position:0
+msgid ""
+"Existing fiscal positions are updated. Fiscal positions are searched by "
+"name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax_code:0
+msgid "Existing tax codes are updated. Tax codes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax:0
+msgid "Existing taxes are updated. Taxes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
+msgid "Fiscal position template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
+msgid ""
+"Fiscal position that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
+msgid "Fiscal position to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,fiscal_position_ids:0
+msgid "Fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,lang:0
+msgid ""
+"For records searched by name (taxes, tax codes, fiscal positions), the "
+"template name will be matched against the record name on this language."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,id:0
+#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
+#: field:wizard.update.charts.accounts.fiscal.position,id:0
+#: field:wizard.update.charts.accounts.tax,id:0
+#: field:wizard.update.charts.accounts.tax.code,id:0
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,continue_on_errors:0
+msgid ""
+"If set, the wizard will continue to the next step even if there are minor "
+"errors (for example the parent account of a new account couldn't be set)."
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"If you leave these options set, the wizard will not just create new records,"
+" but also update records with changes (i.e. different tax amount)"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,lang:0
+msgid "Language"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_uid:0
+#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
+#: field:wizard.update.charts.accounts.tax,write_uid:0
+#: field:wizard.update.charts.accounts.tax.code,write_uid:0
+msgid "Last Updated by"
+msgstr "Τελευταία ενημέρωση από"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_date:0
+#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
+#: field:wizard.update.charts.accounts.tax,write_date:0
+#: field:wizard.update.charts.accounts.tax.code,write_date:0
+msgid "Last Updated on"
+msgstr "Τελευταία ενημέρωση στις"
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Log"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,log:0
+msgid "Messages and Errors"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
+#, python-format
+msgid "Name not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
+#, python-format
+msgid "Name or code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
+#, python-format
+msgid "Name or description not found."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "New tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "New template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Next"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,code_digits:0
+msgid ""
+"No. of digits to use for account code. Make sure it is the same number as "
+"existing accounts."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#, python-format
+msgid "None"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Note: Not all the fields are tested for changes, just the main ones"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
+#: field:wizard.update.charts.accounts.fiscal.position,notes:0
+#: field:wizard.update.charts.accounts.tax,notes:0
+#: field:wizard.update.charts.accounts.tax.code,notes:0
+msgid "Notes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
+#, python-format
+msgid ""
+"One or more errors detected!\n"
+"\n"
+"%s"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Other options"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Previous"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Records to create/update"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,state:0
+msgid "Status"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 1"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 2"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of created objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of deleted objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of updated objects"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
+#, python-format
+msgid "Tax %s: The collected account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
+#, python-format
+msgid "Tax %s: The paid account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_account_tax_code
+msgid "Tax Code"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
+msgid "Tax code template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
+msgid "Tax code that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Tax code to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
+msgid "Tax code to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_code_ids:0
+msgid "Tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
+#, python-format
+msgid "Tax is disabled.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
+#, python-format
+msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,tax_id:0
+msgid "Tax template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
+msgid "Tax that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Tax to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,update_tax_id:0
+msgid "Tax to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_ids:0
+msgid "Taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
+#, python-format
+msgid "The account_collected field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
+#, python-format
+msgid "The account_paid field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#, python-format
+msgid "The amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
+#, python-format
+msgid "The applicable type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
+#, python-format
+msgid "The base sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#, python-format
+msgid "The base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#, python-format
+msgid "The child depend field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#, python-format
+msgid "The code field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
+#, python-format
+msgid "The description field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#, python-format
+msgid "The domain field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
+#, python-format
+msgid "The include base amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
+#, python-format
+msgid "The info field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
+#, python-format
+msgid "The name field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
+#, python-format
+msgid "The name is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
+#, python-format
+msgid "The notprintable field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
+#, python-format
+msgid "The parent field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
+#, python-format
+msgid "The parent_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
+#, python-format
+msgid "The python compute field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
+#, python-format
+msgid "The reconcile is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
+#, python-format
+msgid "The ref_base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
+#, python-format
+msgid "The ref_tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
+#, python-format
+msgid "The sequence field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
+#, python-format
+msgid "The sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#, python-format
+msgid "The tax sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#, python-format
+msgid "The tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
+#, python-format
+msgid "The template has accounts the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#, python-format
+msgid "The template has taxes the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#, python-format
+msgid "The type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
+#, python-format
+msgid "The type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
+#, python-format
+msgid "The type tax use field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
+#, python-format
+msgid "The user type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#, python-format
+msgid "To deactivate: not in the template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
+#: field:wizard.update.charts.accounts.fiscal.position,type:0
+#: field:wizard.update.charts.accounts.tax,type:0
+#: field:wizard.update.charts.accounts.tax.code,type:0
+msgid "Type"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_account:0
+msgid "Update accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
+#: model:ir.ui.menu,name:account_chart_update.menu_wizard
+msgid "Update chart of accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update chart of accounts from a template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
+msgid "Update chart wizard"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid "Update children accounts parent"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_fiscal_position:0
+msgid "Update fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update records?"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax_code:0
+msgid "Update tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax:0
+msgid "Update taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid ""
+"Update the parent of accounts that seem (based on the code) to be children "
+"of the newly created ones. If you had an account 430 with a child 4300000, "
+"and a 4300 account is created, the 4300000 parent will be set to 4300."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
+#, python-format
+msgid "Updated account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
+#, python-format
+msgid "Updated tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Updated tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
+#, python-format
+msgid "Updated tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Updated template"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Wizard completed"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "or"
+msgstr ""
diff --git a/account_chart_update/i18n/en_GB.po b/account_chart_update/i18n/en_GB.po
index ac821932b..b58780b49 100644
--- a/account_chart_update/i18n/en_GB.po
+++ b/account_chart_update/i18n/en_GB.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Active"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Close"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notes"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/es.po b/account_chart_update/i18n/es.po
index 5e706ebd2..c97ae51de 100644
--- a/account_chart_update/i18n/es.po
+++ b/account_chart_update/i18n/es.po
@@ -3,14 +3,32 @@
# * account_chart_update
#
# Translators:
+# Accounts-Payable - Alkemics, 2015
+# Ahmet Altınışık , 2015
# Alejandro Santana , 2015
+# Antonio Trueba, 2016
+# Carles Antoli , 2016
+# Chen-Do LU , 2015
+# Dimitrios Glentadakis , 2013-2014, 2015-2016
+# Efstathios Iosifidis , 2014
+# FIRST AUTHOR , 2012
+# François Breysse , 2015
+# Guewen Baconnier , 2015
+# Hotellook, 2014
+# Jim Spentzos, 2014
+# Matjaž Mozetič , 2015
+# njeudy , 2015
+# Pedro M. Baeza , 2015
+# Pierre Verkest , 2015
+# Rudolf Schnapka , 2016
+# SaFi J. , 2015
msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-09-01 23:59+0000\n"
-"Last-Translator: Alejandro Santana \n"
+"POT-Creation-Date: 2016-04-02 01:08+0000\n"
+"PO-Revision-Date: 2016-04-07 16:09+0000\n"
+"Last-Translator: Carles Antoli \n"
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,7 +42,7 @@ msgid "# of digits"
msgstr "Nº de dígitos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeo de cuenta no encontrado en la instancia de posición fiscal: %s -> %s.\n"
@@ -39,6 +57,11 @@ msgstr "Plantilla de cuenta"
msgid "Account that needs to be updated (new or updated in the template)."
msgstr "Cuenta que necesita actualizarse (nueva o actualizada en la plantilla)"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -55,6 +78,17 @@ msgstr "Cuentas"
msgid "Active"
msgstr "Activo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr "Añadir cuenta"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -76,7 +110,7 @@ msgid "Close"
msgstr "Cerrar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr "Código no encontrado."
@@ -97,7 +131,7 @@ msgid "Create/Update"
msgstr "Crear/Actualizar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr "Creada cuenta %s.\n"
@@ -105,6 +139,7 @@ msgstr "Creada cuenta %s.\n"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -114,6 +149,7 @@ msgstr "Creado por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -121,49 +157,49 @@ msgid "Created on"
msgstr "Creado en"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr "Creada o actualizada posición fiscal %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr "Creado impuesto %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr "Creado código de impuesto %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr "Desactivados %d códigos de impuestos\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr "Desactivados %d impuestos\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr "Excepción creando cuenta %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr "Excepción estableciendo el padre de los hijos de la cuenta %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr "Excepción escribiendo cuenta %s: %s - %s.\n"
@@ -190,6 +226,24 @@ msgstr "Los códigos de impuestos existentes serán actualizados. Los códigos d
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Los impuestos existentes serán actualizados. Los impuestos se buscarán por nombre."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -222,6 +276,7 @@ msgstr "Para los registros de impuestos, códigos de impuestos y posiciones fis
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -250,6 +305,7 @@ msgstr "Idioma"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -259,6 +315,7 @@ msgstr "Última actualización por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -276,19 +333,19 @@ msgid "Messages and Errors"
msgstr "Mensajes y errores"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr "Nombre no encontrado."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr "Nombre o código no encontrado."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr "Nombre o descripción no encontrada."
@@ -318,7 +375,7 @@ msgid ""
msgstr "Nº de dígitos a usar para el código de cuenta. Asegúrese que este número es el mismo que el de las cuentas existentes."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr "Ninguno"
@@ -330,6 +387,7 @@ msgstr "Nota: No se comprueban todos los campos, sólo los importantes"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -337,7 +395,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -360,6 +418,17 @@ msgstr "Anterior"
msgid "Records to create/update"
msgstr "Registros a crear/actualizar"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -391,13 +460,13 @@ msgid "Summary of updated objects"
msgstr "Resumen de objetos actualizados"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr "Impuesto %s: No se pudo establecer la cuenta a recibir.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr "Impuesto %s: No se pudo establecer la cuenta a pagar.\n"
@@ -434,13 +503,13 @@ msgid "Tax codes"
msgstr "Códigos de impuestos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr "Impuesto está desactivado.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeo de cuenta no encontrado en la instancia de la posición fiscal: %s -> %s.\n"
@@ -472,189 +541,195 @@ msgid "Taxes"
msgstr "Impuestos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr "El campo account_collected es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr "El campo account_paid es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr "El campo importe es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr "El campo tipo aplicable es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr "El campo signo base es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr "El campo base_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr "El campo impuesto en hijos es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr "El campo código es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr "El campo descripción es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr "El campo dominio es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr "El campo incluir en importe base es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr "El campo info es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr "El campo nombre es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr "El nombre es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr "El campo no se imprime en factura es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr "El campo padre es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr "El campo parent_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr "El campo cálculo python es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr "El campo reconciliar es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr "El campo ref_base_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr "El campo ref_tax_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr "El campo secuencia es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr "El campo signo es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr "El campo signo de impuesto es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr "El campo tax_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr "La plantilla tiene cuentas que la instancia de posición fiscal no.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr "La plantilla tiene impuestos que la instancia de posición fiscal no.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr "El campo tipo es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr "El tipo es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr "El campo aplicación impuesto es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr "El tipo de usuario es diferente.\n"
@@ -662,19 +737,20 @@ msgstr "El tipo de usuario es diferente.\n"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
-msgstr "Este asistente actualizará sus cuentas, impuestos y posiciones fiscales de acuerdo a la plantilla de plan contable seleccionada"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr "A desactivar: no está en la plantilla"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -699,6 +775,7 @@ msgstr "Actualizar plan contable desde una plantilla"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -710,6 +787,11 @@ msgstr "Asistente para actualizar el plan contable"
msgid "Update children accounts parent"
msgstr "Actualizar padre de cuentas hijas"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -730,6 +812,11 @@ msgstr "Actualizar códigos de impuestos"
msgid "Update taxes"
msgstr "Actualizar impuestos"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -739,13 +826,13 @@ msgid ""
msgstr "Actualizar el padre de las cuentas que parecen (basándose en el código) ser hijas de las cuentas recién creadas. Si tiene una cuenta 430 con una hija 4300000, y se crea una cuenta 4300, se establecerá la cuenta 4300 como padre de la cuenta 4300000."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr "Actualizada cuenta %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr "Actualizado impuesto %s.\n"
@@ -756,7 +843,7 @@ msgid "Updated tax code"
msgstr "Códigos de impuesto actualizados"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr "Actualizado código de impuesto %s.\n"
@@ -768,6 +855,11 @@ msgstr "Actualizado código de impuesto %s.\n"
msgid "Updated template"
msgstr "Plantilla actualizada"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr "Advertencia"
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/es_AR.po b/account_chart_update/i18n/es_AR.po
index 714f332bb..058ca09df 100644
--- a/account_chart_update/i18n/es_AR.po
+++ b/account_chart_update/i18n/es_AR.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_AR/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/es_CR.po b/account_chart_update/i18n/es_CR.po
index 6816b5e0a..5e58b7b0b 100644
--- a/account_chart_update/i18n/es_CR.po
+++ b/account_chart_update/i18n/es_CR.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CR/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Activo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Cerrar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/es_EC.po b/account_chart_update/i18n/es_EC.po
index 0a5c1c025..fb5c1de59 100644
--- a/account_chart_update/i18n/es_EC.po
+++ b/account_chart_update/i18n/es_EC.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_EC/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Activo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Cerrar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/es_ES.po b/account_chart_update/i18n/es_ES.po
index af8788a46..085c62102 100644
--- a/account_chart_update/i18n/es_ES.po
+++ b/account_chart_update/i18n/es_ES.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_ES/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr "Nº de dígitos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeo de cuenta no encontrado en la instancia de posición fiscal: %s -> %s.\n"
@@ -38,6 +38,11 @@ msgstr "Plantilla de cuenta"
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr "Cuentas"
msgid "Active"
msgstr "Activo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Cerrar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr "Código no encontrado."
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr "Crear/Actualizar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr "Creada cuenta %s.\n"
@@ -104,6 +120,7 @@ msgstr "Creada cuenta %s.\n"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr "Creado por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr "Creado en"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr "Creada o actualizada posición fiscal %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr "Creado impuesto %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr "Creado código de impuesto %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr "Desactivados %d códigos de impuestos\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr "Desactivados %d impuestos\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr "Excepción creando cuenta %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr "Excepción estableciendo el padre de los hijos de la cuenta %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr "Excepción escribiendo cuenta %s: %s - %s.\n"
@@ -189,6 +207,24 @@ msgstr "Los códigos de impuestos existentes serán actualizados. Los códigos d
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Los impuestos existentes serán actualizados. Los impuestos se buscarán por nombre."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr "Para los registros de impuestos, códigos de impuestos y posiciones fis
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr "Idioma"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr "Última actualización por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr "Mensajes y errores"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr "Nombre no encontrado."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr "Nombre o código no encontrado."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr "Nombre o descripción no encontrada."
@@ -317,7 +356,7 @@ msgid ""
msgstr "Nº de dígitos a usar para el código de cuenta. Asegúrese que este número es el mismo que el de las cuentas existentes."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr "Ninguno"
@@ -329,6 +368,7 @@ msgstr "Nota: No se comprueban todos los campos, sólo los importantes"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr "Anterior"
msgid "Records to create/update"
msgstr "Registros a crear/actualizar"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr "Resumen de objetos actualizados"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr "Impuesto %s: No se pudo establecer la cuenta a recibir.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr "Impuesto %s: No se pudo establecer la cuenta a pagar.\n"
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr "Códigos de impuestos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr "Impuesto está desactivado.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeo de cuenta no encontrado en la instancia de la posición fiscal: %s -> %s.\n"
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr "Impuestos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr "El campo account_collected es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr "El campo account_paid es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr "El campo importe es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr "El campo tipo aplicable es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr "El campo signo base es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr "El campo base_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr "El campo impuesto en hijos es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr "El campo código es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr "El campo descripción es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr "El campo dominio es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr "El campo incluir en importe base es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr "El campo info es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr "El campo nombre es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr "El nombre es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr "El campo no se imprime en factura es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr "El campo padre es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr "El campo parent_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr "El campo cálculo python es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr "El campo reconciliar es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr "El campo ref_base_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr "El campo ref_tax_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr "El campo secuencia es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr "El campo signo es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr "El campo signo de impuesto es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr "El campo tax_code_id es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr "La plantilla tiene cuentas que la instancia de posición fiscal no.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr "La plantilla tiene impuestos que la instancia de posición fiscal no.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr "El campo tipo es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr "El tipo es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr "El campo aplicación impuesto es diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr "El tipo de usuario es diferente.\n"
@@ -661,19 +718,20 @@ msgstr "El tipo de usuario es diferente.\n"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
-msgstr "Este asistente actualizará sus cuentas, impuestos y posiciones fiscales de acuerdo a la plantilla de plan contable seleccionada"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr "A desactivar: no está en la plantilla"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr "Actualizar plan contable desde una plantilla"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr "Asistente para actualizar el plan contable"
msgid "Update children accounts parent"
msgstr "Actualizar padre de cuentas hijas"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr "Actualizar códigos de impuestos"
msgid "Update taxes"
msgstr "Actualizar impuestos"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr "Actualizar el padre de las cuentas que parecen (basándose en el código) ser hijas de las cuentas recién creadas. Si tiene una cuenta 430 con una hija 4300000, y se crea una cuenta 4300, se establecerá la cuenta 4300 como padre de la cuenta 4300000."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr "Actualizada cuenta %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr "Actualizado impuesto %s.\n"
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr "Códigos de impuesto actualizados"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr "Actualizado código de impuesto %s.\n"
@@ -767,6 +836,11 @@ msgstr "Actualizado código de impuesto %s.\n"
msgid "Updated template"
msgstr "Plantilla actualizada"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/es_MX.po b/account_chart_update/i18n/es_MX.po
index add99a2cb..0c0f611da 100644
--- a/account_chart_update/i18n/es_MX.po
+++ b/account_chart_update/i18n/es_MX.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Activo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Cerrar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/es_VE.po b/account_chart_update/i18n/es_VE.po
index 7a267068a..71b43a075 100644
--- a/account_chart_update/i18n/es_VE.po
+++ b/account_chart_update/i18n/es_VE.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_VE/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Activo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Cerrar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/et.po b/account_chart_update/i18n/et.po
index 74cc49b45..1f8720571 100644
--- a/account_chart_update/i18n/et.po
+++ b/account_chart_update/i18n/et.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/et/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktiivne"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Sulge"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Märkmed"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/fi.po b/account_chart_update/i18n/fi.po
new file mode 100644
index 000000000..def9b98e9
--- /dev/null
+++ b/account_chart_update/i18n/fi.po
@@ -0,0 +1,852 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_chart_update
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: account-financial-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
+"Last-Translator: OCA Transbot \n"
+"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,code_digits:0
+msgid "# of digits"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
+#, python-format
+msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,account_id:0
+msgid "Account template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
+msgid "Account that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_account_id:0
+msgid "Account to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,account_ids:0
+msgid "Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:account.tax.code,active:0
+msgid "Active"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Cancel"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,chart_template_id:0
+msgid "Chart Template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Chart of Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Close"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
+#, python-format
+msgid "Code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,company_id:0
+msgid "Company"
+msgstr "Yritys"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,continue_on_errors:0
+msgid "Continue on errors"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Create/Update"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
+#, python-format
+msgid "Created account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_uid:0
+#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
+#: field:wizard.update.charts.accounts.tax,create_uid:0
+#: field:wizard.update.charts.accounts.tax.code,create_uid:0
+msgid "Created by"
+msgstr "Luonut"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_date:0
+#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
+#: field:wizard.update.charts.accounts.tax,create_date:0
+#: field:wizard.update.charts.accounts.tax.code,create_date:0
+msgid "Created on"
+msgstr "Luotu"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
+#, python-format
+msgid "Created or updated fiscal position %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
+#, python-format
+msgid "Created tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
+#, python-format
+msgid "Created tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
+#, python-format
+msgid "Deactivated %d tax codes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#, python-format
+msgid "Deactivated %d taxes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
+#, python-format
+msgid "Exception creating account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
+#, python-format
+msgid "Exception setting the parent of account %s children: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
+#, python-format
+msgid "Exception writing account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_account:0
+msgid "Existing accounts are updated. Accounts are searched by code."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_fiscal_position:0
+msgid ""
+"Existing fiscal positions are updated. Fiscal positions are searched by "
+"name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax_code:0
+msgid "Existing tax codes are updated. Tax codes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax:0
+msgid "Existing taxes are updated. Taxes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
+msgid "Fiscal position template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
+msgid ""
+"Fiscal position that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
+msgid "Fiscal position to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,fiscal_position_ids:0
+msgid "Fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,lang:0
+msgid ""
+"For records searched by name (taxes, tax codes, fiscal positions), the "
+"template name will be matched against the record name on this language."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,id:0
+#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
+#: field:wizard.update.charts.accounts.fiscal.position,id:0
+#: field:wizard.update.charts.accounts.tax,id:0
+#: field:wizard.update.charts.accounts.tax.code,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,continue_on_errors:0
+msgid ""
+"If set, the wizard will continue to the next step even if there are minor "
+"errors (for example the parent account of a new account couldn't be set)."
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"If you leave these options set, the wizard will not just create new records,"
+" but also update records with changes (i.e. different tax amount)"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,lang:0
+msgid "Language"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_uid:0
+#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
+#: field:wizard.update.charts.accounts.tax,write_uid:0
+#: field:wizard.update.charts.accounts.tax.code,write_uid:0
+msgid "Last Updated by"
+msgstr "Viimeksi päivittänyt"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_date:0
+#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
+#: field:wizard.update.charts.accounts.tax,write_date:0
+#: field:wizard.update.charts.accounts.tax.code,write_date:0
+msgid "Last Updated on"
+msgstr "Viimeksi päivitetty"
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Log"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,log:0
+msgid "Messages and Errors"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
+#, python-format
+msgid "Name not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
+#, python-format
+msgid "Name or code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
+#, python-format
+msgid "Name or description not found."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "New tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "New template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Next"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,code_digits:0
+msgid ""
+"No. of digits to use for account code. Make sure it is the same number as "
+"existing accounts."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#, python-format
+msgid "None"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Note: Not all the fields are tested for changes, just the main ones"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
+#: field:wizard.update.charts.accounts.fiscal.position,notes:0
+#: field:wizard.update.charts.accounts.tax,notes:0
+#: field:wizard.update.charts.accounts.tax.code,notes:0
+msgid "Notes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
+#, python-format
+msgid ""
+"One or more errors detected!\n"
+"\n"
+"%s"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Other options"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Previous"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Records to create/update"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,state:0
+msgid "Status"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 1"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 2"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of created objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of deleted objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of updated objects"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
+#, python-format
+msgid "Tax %s: The collected account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
+#, python-format
+msgid "Tax %s: The paid account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_account_tax_code
+msgid "Tax Code"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
+msgid "Tax code template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
+msgid "Tax code that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Tax code to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
+msgid "Tax code to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_code_ids:0
+msgid "Tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
+#, python-format
+msgid "Tax is disabled.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
+#, python-format
+msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,tax_id:0
+msgid "Tax template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
+msgid "Tax that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Tax to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,update_tax_id:0
+msgid "Tax to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_ids:0
+msgid "Taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
+#, python-format
+msgid "The account_collected field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
+#, python-format
+msgid "The account_paid field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#, python-format
+msgid "The amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
+#, python-format
+msgid "The applicable type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
+#, python-format
+msgid "The base sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#, python-format
+msgid "The base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#, python-format
+msgid "The child depend field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#, python-format
+msgid "The code field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
+#, python-format
+msgid "The description field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#, python-format
+msgid "The domain field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
+#, python-format
+msgid "The include base amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
+#, python-format
+msgid "The info field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
+#, python-format
+msgid "The name field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
+#, python-format
+msgid "The name is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
+#, python-format
+msgid "The notprintable field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
+#, python-format
+msgid "The parent field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
+#, python-format
+msgid "The parent_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
+#, python-format
+msgid "The python compute field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
+#, python-format
+msgid "The reconcile is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
+#, python-format
+msgid "The ref_base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
+#, python-format
+msgid "The ref_tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
+#, python-format
+msgid "The sequence field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
+#, python-format
+msgid "The sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#, python-format
+msgid "The tax sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#, python-format
+msgid "The tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
+#, python-format
+msgid "The template has accounts the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#, python-format
+msgid "The template has taxes the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#, python-format
+msgid "The type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
+#, python-format
+msgid "The type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
+#, python-format
+msgid "The type tax use field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
+#, python-format
+msgid "The user type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#, python-format
+msgid "To deactivate: not in the template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
+#: field:wizard.update.charts.accounts.fiscal.position,type:0
+#: field:wizard.update.charts.accounts.tax,type:0
+#: field:wizard.update.charts.accounts.tax.code,type:0
+msgid "Type"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_account:0
+msgid "Update accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
+#: model:ir.ui.menu,name:account_chart_update.menu_wizard
+msgid "Update chart of accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update chart of accounts from a template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
+msgid "Update chart wizard"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid "Update children accounts parent"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_fiscal_position:0
+msgid "Update fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update records?"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax_code:0
+msgid "Update tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax:0
+msgid "Update taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid ""
+"Update the parent of accounts that seem (based on the code) to be children "
+"of the newly created ones. If you had an account 430 with a child 4300000, "
+"and a 4300 account is created, the 4300000 parent will be set to 4300."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
+#, python-format
+msgid "Updated account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
+#, python-format
+msgid "Updated tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Updated tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
+#, python-format
+msgid "Updated tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Updated template"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Wizard completed"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "or"
+msgstr ""
diff --git a/account_chart_update/i18n/fr.po b/account_chart_update/i18n/fr.po
index 8d4f1ecc9..1b008ea79 100644
--- a/account_chart_update/i18n/fr.po
+++ b/account_chart_update/i18n/fr.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-07-06 10:01+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "La correspondance des comptes n'a pas été trouvée dans la poosition fiscale: %s -> %s.\n"
@@ -38,6 +38,11 @@ msgstr "Modèle de compte"
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr "Comptes"
msgid "Active"
msgstr "Actif"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Fermer"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr "Creation/Mise à jour"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr "Compte créé %s.\n"
@@ -104,6 +120,7 @@ msgstr "Compte créé %s.\n"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr "Créer par"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr "Créer le"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr "Positions fiscales créées ou mises à jour %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr "Taxes créées %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr "Code de taxe créé: %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr "Exception creating account %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr "Exception setting the parent of account %s children: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr "Exception writing account %s: %s - %s.\n"
@@ -189,6 +207,24 @@ msgstr "Les codes de taxe sont mis à jour. Les codes de taxe sont recherchés p
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Les taxes existantes sont mises à jour. Les taxes sont recherchées par nom."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr "Pour les enregistrements recherchés par nom (taxes, codes de taxe, posi
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr "Langue"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr "Mis à jour par"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr "Messages et Erreurs"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notes"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr "Précédent"
msgid "Records to create/update"
msgstr "Enregistrement à créer/mettre à jour"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr "Résumé des objets mis à jour"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr "Taxe %s: Le compte collecté ne peut pas être réglé.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr "Taxe %s: Le compte de paiement ne peut pas être mis à jour.\n"
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr "Codes de taxe"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "La correspondance de taxe n'a pas été trouvée sur la position fiscale: %s -> %s.\n"
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr "Taxes"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr "Le champ montant est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr "The champ type à appliquer est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr "Le champ signe de la base est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr "Le champ enfant est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr "Le champ field est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr "Le champ domaine est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr "La champ montant de base est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr "Le champ info est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr "Le nom est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr "Le champ de calcul python est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr "Le rapprochement est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr "Le champ sequence est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr "Le champ signe est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr "Le champ signe taxe est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr "Le modèle possède des comptes et la position fiscale n'en a pas.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr "Le modèle possède des taxes et la position fiscale n'en a pas.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr "Le champ type est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr "Le type est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr "Le champ type de la taxe est différent.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr "Le type de l'utisateur est différent.\n"
@@ -661,19 +718,20 @@ msgstr "Le type de l'utisateur est différent.\n"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr "Assistant de mise à jour de plan comptable"
msgid "Update children accounts parent"
msgstr "Mettre à jour les comptes parents"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr "Codes de taxe mis à jour"
msgid "Update taxes"
msgstr "Taxes mises à jour"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr "Mettre à jour le parent des comptes qui semblent (selon leur code) être des enfants de nouveaux comptes créés. Si vous avez déjà un compte parent 430 avec un enfant 430000, et qu'un nouveau compte 4300 est créé, le champ parent du compte 430000 sera mis à jour avec 4300."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr "Champ mis à jour %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr "Taxe mise à jour %s.\n"
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr "Code de taxe mis à jour %s.\n"
@@ -767,6 +836,11 @@ msgstr "Code de taxe mis à jour %s.\n"
msgid "Updated template"
msgstr "Modèle mis à jour"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/gl.po b/account_chart_update/i18n/gl.po
index 5ea4f674b..a25384466 100644
--- a/account_chart_update/i18n/gl.po
+++ b/account_chart_update/i18n/gl.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-09-02 00:15+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Galician (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr "Creado por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr "Creado en"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr "ültima actualización por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/gl_ES.po b/account_chart_update/i18n/gl_ES.po
index c4138f291..a5ab4cf91 100644
--- a/account_chart_update/i18n/gl_ES.po
+++ b/account_chart_update/i18n/gl_ES.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-09-02 00:17+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl_ES/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/gu.po b/account_chart_update/i18n/gu.po
index 9b7cd542f..6398f06b3 100644
--- a/account_chart_update/i18n/gu.po
+++ b/account_chart_update/i18n/gu.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Gujarati (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gu/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "નોંધ"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/hr.po b/account_chart_update/i18n/hr.po
index 62ef8a989..114af66f3 100644
--- a/account_chart_update/i18n/hr.po
+++ b/account_chart_update/i18n/hr.po
@@ -3,12 +3,13 @@
# * account_chart_update
#
# Translators:
+# Davor Bojkić , 2015
msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +24,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,22 +39,38 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
-msgstr ""
+msgstr "Konta za ažuriranje"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
#: field:wizard.update.charts.accounts,account_ids:0
msgid "Accounts"
-msgstr ""
+msgstr "Konta"
#. module: account_chart_update
#: field:account.tax.code,active:0
msgid "Active"
msgstr "Aktivno"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -62,12 +79,12 @@ msgstr "Odustani"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,chart_template_id:0
msgid "Chart Template"
-msgstr ""
+msgstr "Predložak kontnog plana"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Chart of Accounts"
-msgstr ""
+msgstr "Kontni plan"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
@@ -75,10 +92,10 @@ msgid "Close"
msgstr "Zatvori"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
-msgstr ""
+msgstr "Šifra nije pronađena"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,company_id:0
@@ -88,7 +105,7 @@ msgstr "Organizacija"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,continue_on_errors:0
msgid "Continue on errors"
-msgstr ""
+msgstr "Nastavi nakon grešaka"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
@@ -96,7 +113,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +121,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +131,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +139,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
-msgstr ""
+msgstr "Kreiran porez %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
-msgstr ""
+msgstr "Kreiran porezni kod %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
-msgstr ""
+msgstr "Deaktivirano %d poreza\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,10 +208,28 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
-msgstr ""
+msgstr "Predložak fiskalne pozicije"
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
@@ -209,7 +246,7 @@ msgstr ""
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
#: field:wizard.update.charts.accounts,fiscal_position_ids:0
msgid "Fiscal positions"
-msgstr ""
+msgstr "Fiskalne pozicije"
#. module: account_chart_update
#: help:wizard.update.charts.accounts,lang:0
@@ -221,11 +258,12 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
msgid "ID"
-msgstr ""
+msgstr "ID"
#. module: account_chart_update
#: help:wizard.update.charts.accounts,continue_on_errors:0
@@ -244,11 +282,12 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,lang:0
msgid "Language"
-msgstr ""
+msgstr "Jezik"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +297,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +315,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
-msgstr ""
+msgstr "Naziv nije pronađen."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -302,12 +342,12 @@ msgstr ""
#: selection:wizard.update.charts.accounts.fiscal.position,type:0
#: selection:wizard.update.charts.accounts.tax,type:0
msgid "New template"
-msgstr ""
+msgstr "Novi predložak"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Next"
-msgstr ""
+msgstr "Sljedeći"
#. module: account_chart_update
#: help:wizard.update.charts.accounts,code_digits:0
@@ -317,7 +357,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +369,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +377,7 @@ msgid "Notes"
msgstr "Bilješke"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -347,18 +388,29 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Other options"
-msgstr ""
+msgstr "Ostale opcije"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Previous"
-msgstr ""
+msgstr "Prethodni"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -367,12 +419,12 @@ msgstr "Status"
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Step 1"
-msgstr ""
+msgstr "Korak 1"
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Step 2"
-msgstr ""
+msgstr "Korak 2"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
@@ -390,13 +442,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -404,12 +456,12 @@ msgstr ""
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_account_tax_code
msgid "Tax Code"
-msgstr ""
+msgstr "Porezni kod"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
msgid "Tax code template"
-msgstr ""
+msgstr "Predložak poreznog koda"
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
@@ -430,16 +482,16 @@ msgstr ""
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
#: field:wizard.update.charts.accounts,tax_code_ids:0
msgid "Tax codes"
-msgstr ""
+msgstr "Porezni kodovi"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -468,192 +520,198 @@ msgstr ""
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
#: field:wizard.update.charts.accounts,tax_ids:0
msgid "Taxes"
+msgstr "Porezi"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +719,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +757,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +769,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +794,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +808,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +825,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +837,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/hu.po b/account_chart_update/i18n/hu.po
index 6c55b2b62..b4337d75e 100644
--- a/account_chart_update/i18n/hu.po
+++ b/account_chart_update/i18n/hu.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktív"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Lezár"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Megjegyzések"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/it.po b/account_chart_update/i18n/it.po
index 47ef59249..2f6c79b6a 100644
--- a/account_chart_update/i18n/it.po
+++ b/account_chart_update/i18n/it.po
@@ -3,12 +3,13 @@
# * account_chart_update
#
# Translators:
+# Matjaž Mozetič , 2015
msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-04-23 00:52+0000\n"
+"PO-Revision-Date: 2016-05-12 08:07+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +24,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +39,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -47,13 +53,24 @@ msgstr ""
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
#: field:wizard.update.charts.accounts,account_ids:0
msgid "Accounts"
-msgstr ""
+msgstr "Conti"
#. module: account_chart_update
#: field:account.tax.code,active:0
msgid "Active"
msgstr "Attivo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +92,7 @@ msgid "Close"
msgstr "Chiudi"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +113,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +121,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +131,7 @@ msgstr "Creato da"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +139,49 @@ msgid "Created on"
msgstr "Creato il"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +208,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +258,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +287,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +297,7 @@ msgstr "Last Updated by"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +315,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +357,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +369,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +377,7 @@ msgid "Notes"
msgstr "Note"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +400,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +442,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +485,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +523,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +719,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +757,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +769,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +794,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +808,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +825,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +837,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/ja.po b/account_chart_update/i18n/ja.po
index e13a543c6..eda0a1b5c 100644
--- a/account_chart_update/i18n/ja.po
+++ b/account_chart_update/i18n/ja.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "有効"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "閉じる"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "注記"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/lt.po b/account_chart_update/i18n/lt.po
index 084344ad5..b8ab80e24 100644
--- a/account_chart_update/i18n/lt.po
+++ b/account_chart_update/i18n/lt.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktyvus"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Uždaryta"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Pastabos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/mk.po b/account_chart_update/i18n/mk.po
index fce26c9b0..b8e6cd955 100644
--- a/account_chart_update/i18n/mk.po
+++ b/account_chart_update/i18n/mk.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Активно"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Затвори"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Белешки"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/mn.po b/account_chart_update/i18n/mn.po
index eeb1e00a4..d06076d61 100644
--- a/account_chart_update/i18n/mn.po
+++ b/account_chart_update/i18n/mn.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Идэвхитэй"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Хаах"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Тэмдэглэл"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/nb.po b/account_chart_update/i18n/nb.po
index df6a0065f..56734ad0b 100644
--- a/account_chart_update/i18n/nb.po
+++ b/account_chart_update/i18n/nb.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktiv"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Lukke"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notater"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/nl.po b/account_chart_update/i18n/nl.po
index fc7a4c219..17007525d 100644
--- a/account_chart_update/i18n/nl.po
+++ b/account_chart_update/i18n/nl.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Actief"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Afsluiten"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notities"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/nl_BE.po b/account_chart_update/i18n/nl_BE.po
index 90ffb07b2..5eaeced20 100644
--- a/account_chart_update/i18n/nl_BE.po
+++ b/account_chart_update/i18n/nl_BE.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_BE/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Actief"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Afsluiten"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Opmerkingen"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/pl.po b/account_chart_update/i18n/pl.po
index 8a525bd68..9ec98b8d7 100644
--- a/account_chart_update/i18n/pl.po
+++ b/account_chart_update/i18n/pl.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Polish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktywny"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Zamknięte"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Uwagi"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/pt.po b/account_chart_update/i18n/pt.po
index 52c54ea08..21c8085c7 100644
--- a/account_chart_update/i18n/pt.po
+++ b/account_chart_update/i18n/pt.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n"
"MIME-Version: 1.0\n"
@@ -24,7 +24,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeamento da conta não encontrada na instância da posição fiscal: %s -> %s.\n"
@@ -39,6 +39,11 @@ msgstr "Modelo conta"
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -55,6 +60,17 @@ msgstr "Contas"
msgid "Active"
msgstr "Activo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -76,7 +92,7 @@ msgid "Close"
msgstr "Fechar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -97,7 +113,7 @@ msgid "Create/Update"
msgstr "Criar/Actualizar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr "Conta criada %s.\n"
@@ -105,65 +121,67 @@ msgstr "Conta criada %s.\n"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "Criado por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "Criado em"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr "Posição fiscal criada ou actualizada %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr "Imposto criado %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr "Código de imposto %s criado.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr "Excepção da criação da conta %s :%s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr "Excepção na definição ascendente da conta descendente %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr "Excepção ao escrever a conta %s: %s - %s.\n"
@@ -190,6 +208,24 @@ msgstr "Os códigos de imposto existentes estão actualizados. O Código de impo
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Os impostos existenstes estão actualizados. Os impostos são localizados pelo nome."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -222,11 +258,12 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
msgid "ID"
-msgstr ""
+msgstr "ID"
#. module: account_chart_update
#: help:wizard.update.charts.accounts,continue_on_errors:0
@@ -250,20 +287,22 @@ msgstr "Linguagem"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "Atualizado pela última vez por"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "Atualizado pela última vez em"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
@@ -276,19 +315,19 @@ msgid "Messages and Errors"
msgstr "Mensagens e Erros"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -318,7 +357,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -330,6 +369,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -337,7 +377,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -360,6 +400,17 @@ msgstr "Anterior"
msgid "Records to create/update"
msgstr "Gravações para criar/actualizar"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -391,13 +442,13 @@ msgid "Summary of updated objects"
msgstr "Resumo de objectos actualizados"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr "Imposto %s: A conta colectada não pode ser definida.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr "Imposto %s: A conta paga não pode ser definida.\n"
@@ -434,13 +485,13 @@ msgid "Tax codes"
msgstr "Códigos do imposto"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Mapeamento de imposto não encontrado na instância da posição fiscal: %s -> %s.\n"
@@ -472,189 +523,195 @@ msgid "Taxes"
msgstr "Impostos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr "O campo montante é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr "O campo tipo aplicável é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr "O campo sinal base é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr "O campo descendente dependente é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr "O campo código é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr "O campo domíno é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr "O campo montante inclui base é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr "O campo informação é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr "O nome é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr "O campo processamento python é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr "A conciliação é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr "O campo sequência é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr "O campo sinal é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr "O campo sinal de imposto é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr "O modelo tem contas que a instância da posição fiscal não tem.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr "O modelo tem impostos que a instância da posição fiscal não tem.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr "O campo tipo é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr "O tipo é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr "O campo tipo de imposto utilizado é diferente.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr "O tipo de utilizador é diferente.\n"
@@ -662,19 +719,20 @@ msgstr "O tipo de utilizador é diferente.\n"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -699,6 +757,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -710,6 +769,11 @@ msgstr "Actualizar lista de assistente"
msgid "Update children accounts parent"
msgstr "Actualizar contas ascendentes de dependentes"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -730,6 +794,11 @@ msgstr "Actualizar códigos de imposto"
msgid "Update taxes"
msgstr "Actualizar impostos"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -739,13 +808,13 @@ msgid ""
msgstr "Actualize contas ascendente que parecem (com base no código) a ser descendentes dos recém-criado. Se tiver uma conta de 430 com uma descendente 4.300.000, e uma conta de 4300 é criado, ascendente 4.300.000 serão definidos para 4300."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr "Conta %s actualizada.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr "Imposto actualizado %s.\n"
@@ -756,7 +825,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr "Código de imposto actualizado %s.\n"
@@ -768,6 +837,11 @@ msgstr "Código de imposto actualizado %s.\n"
msgid "Updated template"
msgstr "Actualizar modelo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/pt_BR.po b/account_chart_update/i18n/pt_BR.po
index 9cf2c1e60..12faf5b30 100644
--- a/account_chart_update/i18n/pt_BR.po
+++ b/account_chart_update/i18n/pt_BR.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Ativo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Fechar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/pt_PT.po b/account_chart_update/i18n/pt_PT.po
new file mode 100644
index 000000000..519c7fcc1
--- /dev/null
+++ b/account_chart_update/i18n/pt_PT.po
@@ -0,0 +1,852 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_chart_update
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: account-financial-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
+"Last-Translator: OCA Transbot \n"
+"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_PT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_PT\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,code_digits:0
+msgid "# of digits"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
+#, python-format
+msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,account_id:0
+msgid "Account template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
+msgid "Account that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_account_id:0
+msgid "Account to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,account_ids:0
+msgid "Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:account.tax.code,active:0
+msgid "Active"
+msgstr "Ativo"
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Cancel"
+msgstr "Cancelar"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,chart_template_id:0
+msgid "Chart Template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Chart of Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Close"
+msgstr "Fechar"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
+#, python-format
+msgid "Code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,company_id:0
+msgid "Company"
+msgstr "Empresa"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,continue_on_errors:0
+msgid "Continue on errors"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Create/Update"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
+#, python-format
+msgid "Created account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_uid:0
+#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
+#: field:wizard.update.charts.accounts.tax,create_uid:0
+#: field:wizard.update.charts.accounts.tax.code,create_uid:0
+msgid "Created by"
+msgstr "Criado por"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_date:0
+#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
+#: field:wizard.update.charts.accounts.tax,create_date:0
+#: field:wizard.update.charts.accounts.tax.code,create_date:0
+msgid "Created on"
+msgstr "Criado em"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
+#, python-format
+msgid "Created or updated fiscal position %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
+#, python-format
+msgid "Created tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
+#, python-format
+msgid "Created tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
+#, python-format
+msgid "Deactivated %d tax codes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#, python-format
+msgid "Deactivated %d taxes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
+#, python-format
+msgid "Exception creating account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
+#, python-format
+msgid "Exception setting the parent of account %s children: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
+#, python-format
+msgid "Exception writing account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_account:0
+msgid "Existing accounts are updated. Accounts are searched by code."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_fiscal_position:0
+msgid ""
+"Existing fiscal positions are updated. Fiscal positions are searched by "
+"name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax_code:0
+msgid "Existing tax codes are updated. Tax codes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax:0
+msgid "Existing taxes are updated. Taxes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
+msgid "Fiscal position template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
+msgid ""
+"Fiscal position that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
+msgid "Fiscal position to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,fiscal_position_ids:0
+msgid "Fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,lang:0
+msgid ""
+"For records searched by name (taxes, tax codes, fiscal positions), the "
+"template name will be matched against the record name on this language."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,id:0
+#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
+#: field:wizard.update.charts.accounts.fiscal.position,id:0
+#: field:wizard.update.charts.accounts.tax,id:0
+#: field:wizard.update.charts.accounts.tax.code,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,continue_on_errors:0
+msgid ""
+"If set, the wizard will continue to the next step even if there are minor "
+"errors (for example the parent account of a new account couldn't be set)."
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"If you leave these options set, the wizard will not just create new records,"
+" but also update records with changes (i.e. different tax amount)"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,lang:0
+msgid "Language"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_uid:0
+#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
+#: field:wizard.update.charts.accounts.tax,write_uid:0
+#: field:wizard.update.charts.accounts.tax.code,write_uid:0
+msgid "Last Updated by"
+msgstr "Atualizado pela última vez por"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_date:0
+#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
+#: field:wizard.update.charts.accounts.tax,write_date:0
+#: field:wizard.update.charts.accounts.tax.code,write_date:0
+msgid "Last Updated on"
+msgstr "Atualizado pela última vez em"
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Log"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,log:0
+msgid "Messages and Errors"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
+#, python-format
+msgid "Name not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
+#, python-format
+msgid "Name or code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
+#, python-format
+msgid "Name or description not found."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "New tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "New template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Next"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,code_digits:0
+msgid ""
+"No. of digits to use for account code. Make sure it is the same number as "
+"existing accounts."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#, python-format
+msgid "None"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Note: Not all the fields are tested for changes, just the main ones"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
+#: field:wizard.update.charts.accounts.fiscal.position,notes:0
+#: field:wizard.update.charts.accounts.tax,notes:0
+#: field:wizard.update.charts.accounts.tax.code,notes:0
+msgid "Notes"
+msgstr "Notas"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
+#, python-format
+msgid ""
+"One or more errors detected!\n"
+"\n"
+"%s"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Other options"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Previous"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Records to create/update"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,state:0
+msgid "Status"
+msgstr "Estado"
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 1"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 2"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of created objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of deleted objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of updated objects"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
+#, python-format
+msgid "Tax %s: The collected account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
+#, python-format
+msgid "Tax %s: The paid account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_account_tax_code
+msgid "Tax Code"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
+msgid "Tax code template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
+msgid "Tax code that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Tax code to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
+msgid "Tax code to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_code_ids:0
+msgid "Tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
+#, python-format
+msgid "Tax is disabled.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
+#, python-format
+msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,tax_id:0
+msgid "Tax template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
+msgid "Tax that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Tax to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,update_tax_id:0
+msgid "Tax to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_ids:0
+msgid "Taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
+#, python-format
+msgid "The account_collected field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
+#, python-format
+msgid "The account_paid field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#, python-format
+msgid "The amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
+#, python-format
+msgid "The applicable type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
+#, python-format
+msgid "The base sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#, python-format
+msgid "The base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#, python-format
+msgid "The child depend field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#, python-format
+msgid "The code field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
+#, python-format
+msgid "The description field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#, python-format
+msgid "The domain field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
+#, python-format
+msgid "The include base amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
+#, python-format
+msgid "The info field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
+#, python-format
+msgid "The name field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
+#, python-format
+msgid "The name is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
+#, python-format
+msgid "The notprintable field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
+#, python-format
+msgid "The parent field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
+#, python-format
+msgid "The parent_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
+#, python-format
+msgid "The python compute field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
+#, python-format
+msgid "The reconcile is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
+#, python-format
+msgid "The ref_base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
+#, python-format
+msgid "The ref_tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
+#, python-format
+msgid "The sequence field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
+#, python-format
+msgid "The sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#, python-format
+msgid "The tax sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#, python-format
+msgid "The tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
+#, python-format
+msgid "The template has accounts the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#, python-format
+msgid "The template has taxes the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#, python-format
+msgid "The type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
+#, python-format
+msgid "The type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
+#, python-format
+msgid "The type tax use field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
+#, python-format
+msgid "The user type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#, python-format
+msgid "To deactivate: not in the template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
+#: field:wizard.update.charts.accounts.fiscal.position,type:0
+#: field:wizard.update.charts.accounts.tax,type:0
+#: field:wizard.update.charts.accounts.tax.code,type:0
+msgid "Type"
+msgstr "Tipo"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_account:0
+msgid "Update accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
+#: model:ir.ui.menu,name:account_chart_update.menu_wizard
+msgid "Update chart of accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update chart of accounts from a template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
+msgid "Update chart wizard"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid "Update children accounts parent"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_fiscal_position:0
+msgid "Update fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update records?"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax_code:0
+msgid "Update tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax:0
+msgid "Update taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid ""
+"Update the parent of accounts that seem (based on the code) to be children "
+"of the newly created ones. If you had an account 430 with a child 4300000, "
+"and a 4300 account is created, the 4300000 parent will be set to 4300."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
+#, python-format
+msgid "Updated account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
+#, python-format
+msgid "Updated tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Updated tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
+#, python-format
+msgid "Updated tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Updated template"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Wizard completed"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "or"
+msgstr "ou"
diff --git a/account_chart_update/i18n/ro.po b/account_chart_update/i18n/ro.po
index e3f476b21..5a14e8d65 100644
--- a/account_chart_update/i18n/ro.po
+++ b/account_chart_update/i18n/ro.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Activ(a)"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Inchide"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Note"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/ru.po b/account_chart_update/i18n/ru.po
index 3c78b53da..364850d77 100644
--- a/account_chart_update/i18n/ru.po
+++ b/account_chart_update/i18n/ru.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Активное"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Закрыть"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Примечания"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/sk.po b/account_chart_update/i18n/sk.po
new file mode 100644
index 000000000..11dab16af
--- /dev/null
+++ b/account_chart_update/i18n/sk.po
@@ -0,0 +1,852 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_chart_update
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: account-financial-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-04-14 02:46+0000\n"
+"PO-Revision-Date: 2016-04-21 08:25+0000\n"
+"Last-Translator: OCA Transbot \n"
+"Language-Team: Slovak (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sk\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,code_digits:0
+msgid "# of digits"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
+#, python-format
+msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,account_id:0
+msgid "Account template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_account
+msgid "Account that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_account_id:0
+msgid "Account to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,account_ids:0
+msgid "Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:account.tax.code,active:0
+msgid "Active"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Cancel"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,chart_template_id:0
+msgid "Chart Template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Chart of Accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Close"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
+#, python-format
+msgid "Code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,company_id:0
+msgid "Company"
+msgstr "Spoločnosť"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,continue_on_errors:0
+msgid "Continue on errors"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Create/Update"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
+#, python-format
+msgid "Created account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_uid:0
+#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
+#: field:wizard.update.charts.accounts.tax,create_uid:0
+#: field:wizard.update.charts.accounts.tax.code,create_uid:0
+msgid "Created by"
+msgstr "Vytvoril"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,create_date:0
+#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
+#: field:wizard.update.charts.accounts.tax,create_date:0
+#: field:wizard.update.charts.accounts.tax.code,create_date:0
+msgid "Created on"
+msgstr "Vytvorené"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
+#, python-format
+msgid "Created or updated fiscal position %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
+#, python-format
+msgid "Created tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
+#, python-format
+msgid "Created tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
+#, python-format
+msgid "Deactivated %d tax codes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#, python-format
+msgid "Deactivated %d taxes\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
+#, python-format
+msgid "Exception creating account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
+#, python-format
+msgid "Exception setting the parent of account %s children: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
+#, python-format
+msgid "Exception writing account %s: %s - %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_account:0
+msgid "Existing accounts are updated. Accounts are searched by code."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_fiscal_position:0
+msgid ""
+"Existing fiscal positions are updated. Fiscal positions are searched by "
+"name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax_code:0
+msgid "Existing tax codes are updated. Tax codes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_tax:0
+msgid "Existing taxes are updated. Taxes are searched by name."
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
+msgid "Fiscal position template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
+msgid ""
+"Fiscal position that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
+msgid "Fiscal position to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,fiscal_position_ids:0
+msgid "Fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,lang:0
+msgid ""
+"For records searched by name (taxes, tax codes, fiscal positions), the "
+"template name will be matched against the record name on this language."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,id:0
+#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
+#: field:wizard.update.charts.accounts.fiscal.position,id:0
+#: field:wizard.update.charts.accounts.tax,id:0
+#: field:wizard.update.charts.accounts.tax.code,id:0
+msgid "ID"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,continue_on_errors:0
+msgid ""
+"If set, the wizard will continue to the next step even if there are minor "
+"errors (for example the parent account of a new account couldn't be set)."
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"If you leave these options set, the wizard will not just create new records,"
+" but also update records with changes (i.e. different tax amount)"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,lang:0
+msgid "Language"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_uid:0
+#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
+#: field:wizard.update.charts.accounts.tax,write_uid:0
+#: field:wizard.update.charts.accounts.tax.code,write_uid:0
+msgid "Last Updated by"
+msgstr "Naposledy upravil"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,write_date:0
+#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
+#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
+#: field:wizard.update.charts.accounts.tax,write_date:0
+#: field:wizard.update.charts.accounts.tax.code,write_date:0
+msgid "Last Updated on"
+msgstr "Naposledy upravené"
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Log"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,log:0
+msgid "Messages and Errors"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
+#, python-format
+msgid "Name not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
+#, python-format
+msgid "Name or code not found."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
+#, python-format
+msgid "Name or description not found."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "New tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "New template"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Next"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,code_digits:0
+msgid ""
+"No. of digits to use for account code. Make sure it is the same number as "
+"existing accounts."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#, python-format
+msgid "None"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Note: Not all the fields are tested for changes, just the main ones"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
+#: field:wizard.update.charts.accounts.fiscal.position,notes:0
+#: field:wizard.update.charts.accounts.tax,notes:0
+#: field:wizard.update.charts.accounts.tax.code,notes:0
+msgid "Notes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
+#, python-format
+msgid ""
+"One or more errors detected!\n"
+"\n"
+"%s"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Other options"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Previous"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Records to create/update"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,state:0
+msgid "Status"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 1"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Step 2"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of created objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of deleted objects"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Summary of updated objects"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
+#, python-format
+msgid "Tax %s: The collected account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
+#, python-format
+msgid "Tax %s: The paid account can not be set.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_account_tax_code
+msgid "Tax Code"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
+msgid "Tax code template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
+msgid "Tax code that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Tax code to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
+msgid "Tax code to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_code_ids:0
+msgid "Tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
+#, python-format
+msgid "Tax is disabled.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
+#, python-format
+msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,tax_id:0
+msgid "Tax template"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax
+msgid "Tax that needs to be updated (new or updated in the template)."
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Tax to deactivate"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.tax,update_tax_id:0
+msgid "Tax to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,tax_ids:0
+msgid "Taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
+#, python-format
+msgid "The account_collected field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
+#, python-format
+msgid "The account_paid field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#, python-format
+msgid "The amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
+#, python-format
+msgid "The applicable type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
+#, python-format
+msgid "The base sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#, python-format
+msgid "The base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#, python-format
+msgid "The child depend field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#, python-format
+msgid "The code field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
+#, python-format
+msgid "The description field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#, python-format
+msgid "The domain field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
+#, python-format
+msgid "The include base amount field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
+#, python-format
+msgid "The info field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
+#, python-format
+msgid "The name field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
+#, python-format
+msgid "The name is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
+#, python-format
+msgid "The notprintable field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
+#, python-format
+msgid "The parent field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
+#, python-format
+msgid "The parent_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
+#, python-format
+msgid "The python compute field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
+#, python-format
+msgid "The reconcile is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
+#, python-format
+msgid "The ref_base_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
+#, python-format
+msgid "The ref_tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
+#, python-format
+msgid "The sequence field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
+#, python-format
+msgid "The sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#, python-format
+msgid "The tax sign field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#, python-format
+msgid "The tax_code_id field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
+#, python-format
+msgid "The template has accounts the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#, python-format
+msgid "The template has taxes the fiscal position instance does not.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#, python-format
+msgid "The type field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
+#, python-format
+msgid "The type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
+#, python-format
+msgid "The type tax use field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
+#, python-format
+msgid "The user type is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid ""
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#, python-format
+msgid "To deactivate: not in the template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
+#: field:wizard.update.charts.accounts.fiscal.position,type:0
+#: field:wizard.update.charts.accounts.tax,type:0
+#: field:wizard.update.charts.accounts.tax.code,type:0
+msgid "Type"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_account:0
+msgid "Update accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
+#: model:ir.ui.menu,name:account_chart_update.menu_wizard
+msgid "Update chart of accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update chart of accounts from a template"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
+msgid "Update chart wizard"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid "Update children accounts parent"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_fiscal_position:0
+msgid "Update fiscal positions"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "Update records?"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax_code:0
+msgid "Update tax codes"
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_tax:0
+msgid "Update taxes"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
+msgid ""
+"Update the parent of accounts that seem (based on the code) to be children "
+"of the newly created ones. If you had an account 430 with a child 4300000, "
+"and a 4300 account is created, the 4300000 parent will be set to 4300."
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
+#, python-format
+msgid "Updated account %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
+#, python-format
+msgid "Updated tax %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.tax.code,type:0
+msgid "Updated tax code"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
+#, python-format
+msgid "Updated tax code %s.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.account,type:0
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+#: selection:wizard.update.charts.accounts.tax,type:0
+msgid "Updated template"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Wizard completed"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+msgid "or"
+msgstr ""
diff --git a/account_chart_update/i18n/sl.po b/account_chart_update/i18n/sl.po
index 0ec04e39d..af702e5af 100644
--- a/account_chart_update/i18n/sl.po
+++ b/account_chart_update/i18n/sl.po
@@ -3,13 +3,13 @@
# * account_chart_update
#
# Translators:
-# Matjaž Mozetič , 2015
+# Matjaž Mozetič , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-07-01 12:24+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-22 05:31+0000\n"
"Last-Translator: Matjaž Mozetič \n"
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n"
"MIME-Version: 1.0\n"
@@ -24,7 +24,7 @@ msgid "# of digits"
msgstr "# znakov"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Za instanco fiskalnega položaja: %s -> %s ni najdeno kontno mapiranje.\n"
@@ -39,6 +39,11 @@ msgstr "Kontna predloga"
msgid "Account that needs to be updated (new or updated in the template)."
msgstr "Konto, ki ga je potrebno posodobiti (nov ali posodobljen iz predloge)."
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr "Konto, ki bo spremenjen na finančnem poročilu"
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -55,6 +60,17 @@ msgstr "Konti"
msgid "Active"
msgstr "Aktivno"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr "Dodaj konto"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr "Konto %s dodan v finančno poročilo %s.\n"
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -76,7 +92,7 @@ msgid "Close"
msgstr "Zaključi"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr "Koda ni najdena."
@@ -97,7 +113,7 @@ msgid "Create/Update"
msgstr "Ustvari/posodobi"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr "Ustvarjen konto %s.\n"
@@ -105,6 +121,7 @@ msgstr "Ustvarjen konto %s.\n"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -114,6 +131,7 @@ msgstr "Ustvaril"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -121,49 +139,49 @@ msgid "Created on"
msgstr "Ustvarjeno"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr "Ustvarjen ali posodobljen fiskalni položaj %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr "Ustvarjen davek %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr "Ustvarjena davčna koda %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr "Deaktivirano %d davčnih kod.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr "Deaktiviranih %d davkov\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr "Izjema pri ustvarjanju konta %s: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr "Izjema pri nastavljanju nadrejenega kontu %s podrejenega: %s - %s.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr "Izjema pri zapisu konta %s: %s - %s.\n"
@@ -190,6 +208,24 @@ msgstr "Obstoječe kode davkov so posodobljene. Iskanje kod davkov po nazivu."
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr "Obstoječi davki so posodobljeni. Iskanje davkov po nazivu."
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr "Mapiranje finančnega poročila, ki mora biti posodobljeno (novo ali posodobljeno v predlogi)"
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr "Finančno poročilo za posodobitev"
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr "Finančna poročila"
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -222,6 +258,7 @@ msgstr "Pri iskanju zapisov po nazivu (davki, kode davkov, fiskalni položaji),
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -250,6 +287,7 @@ msgstr "Jezik"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -259,6 +297,7 @@ msgstr "Zadnjič posodobil"
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -276,19 +315,19 @@ msgid "Messages and Errors"
msgstr "Sporočila in napake"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr "Naziv ni najden."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr "Naziv ali koda nista najdena."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr "Naziv ali opis nista najdena."
@@ -318,7 +357,7 @@ msgid ""
msgstr "Število znakov, ki se uporablja v kontni kodi. Zagotovite, da bo enako tistemu na obstoječih kontih."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr "Noben"
@@ -330,6 +369,7 @@ msgstr "Opomba: glede sprememb niso testirana vsa polja, ampak le glavna polja"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -337,7 +377,7 @@ msgid "Notes"
msgstr "Opombe"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -360,6 +400,17 @@ msgstr "Prejšnji"
msgid "Records to create/update"
msgstr "Zapisi, ki se ustvarjajo/posodabljajo"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr "Odstrani konto"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr "Konto %s odstranjen iz finančnega poročila %s.\n"
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -391,13 +442,13 @@ msgid "Summary of updated objects"
msgstr "Povzetek posodobljenih objektov"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr "Davek %s: konta prejetih plačil ni možno nastaviti.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr "Davek %s: konta izdanih plačil ni možno nastaviti.\n"
@@ -434,13 +485,13 @@ msgid "Tax codes"
msgstr "Kode davkov"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr "Davek je onemogočen.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr "Za instanco fiskalnega položaja: %s -> %s ni najdeno davčno mapiranje.\n"
@@ -472,189 +523,195 @@ msgid "Taxes"
msgstr "Davki"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr "Polje 'davek vključen v ceni' je drugačno.\n"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr "Polje account_collected je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr "Polje account_paid je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr "Polje znesek je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr "Polje applicable type je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr "Polje base sign je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr "Polje base_code_id je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr "Polje 'podrejeno odvisno' je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr "Polje koda je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr "Polje opis je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr "Polje domena je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr "Polje 'vključi osnovni znesek' je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr "Polje podrobnosti je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr "Polje naziv je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr "Naziv je drugačen.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr "Polje notprintable je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr "Nadrejeno polje je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr "Nadrejeno polje 'parent_id' je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr "Polje 'izvedi python' je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr "Uskladitev je drugačna.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr "Polje ref_base_code_id je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr "Polje ref_tax_code_id je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr "Polje 'zaporedje' je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr "Polje sign je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr "Polje tax sign je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr "Polje tax_code_id je drugačno..\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr "Predloga vsebuje konte, ki jih instanca fiskalnega položaja ne vsebuje.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr "Predloga vsebuje davke, ki jih instanca fiskalnega položaja ne vsebuje.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr "Polje 'tip' je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr "Tip je drugačen.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr "Polje type tax use je drugačno.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr "Polje 'tip uporabnika' je drugačno.\n"
@@ -662,19 +719,20 @@ msgstr "Polje 'tip uporabnika' je drugačno.\n"
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
-msgstr "Čarovnik bo posodobil konte, davke in fiskalne položaje glede na izbrano predlogo kontnega plana"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
+msgstr "Čarovnik bo posodobil konte, davke, fiskalne položaje in finančna poročila glede na izbrano predlogo kontnega plana."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr "Za deaktivacijo: ni v predlogi"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -699,6 +757,7 @@ msgstr "Posodobitev kontnega plana po predlogi"
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -710,6 +769,11 @@ msgstr "Čarovnik za posodobitev kontnega plana"
msgid "Update children accounts parent"
msgstr "Posodobitev nadrejenega konta podrejenim"
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr "Posodobi konte finančnega poročila"
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -730,6 +794,11 @@ msgstr "Posodobitev davčnih kod"
msgid "Update taxes"
msgstr "Posodobitev davkov"
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr "Posodobi mapiranje kontov finančnega poročila"
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -739,13 +808,13 @@ msgid ""
msgstr "Posodobitev nadrejenih kontov, ki so (glede na kodo) podrejeni novo ustvarjenim kontom. Če ste imeli konto 430 s podrejenim kontom 4300000, in se ustvari konto 4300, bo 4300 nastavljen kot nadrejeni kontu 4300000."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr "Konto %s posodobljen.\n"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr "Davek %s posodobljen.\n"
@@ -756,7 +825,7 @@ msgid "Updated tax code"
msgstr "Davčna koda posodobljena"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr "Davčna koda %s posodobljena.\n"
@@ -768,6 +837,11 @@ msgstr "Davčna koda %s posodobljena.\n"
msgid "Updated template"
msgstr "Predloga posodobljena"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr "Pozor"
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/sr@latin.po b/account_chart_update/i18n/sr@latin.po
index 4574571ba..35ed48bbc 100644
--- a/account_chart_update/i18n/sr@latin.po
+++ b/account_chart_update/i18n/sr@latin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr@latin/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktivno"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Zatvori"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Napomene"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/sv.po b/account_chart_update/i18n/sv.po
index 7008dd8b9..eb8cf63ee 100644
--- a/account_chart_update/i18n/sv.po
+++ b/account_chart_update/i18n/sv.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sv/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Aktiv"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Stäng"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Anteckningar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/th.po b/account_chart_update/i18n/th.po
index 32f32e6f5..7d7e53514 100644
--- a/account_chart_update/i18n/th.po
+++ b/account_chart_update/i18n/th.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/th/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "เปิดใช้งาน"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "ปิด"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "บันทึกย่อ"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/tr.po b/account_chart_update/i18n/tr.po
index d1e2b7413..22e66c696 100644
--- a/account_chart_update/i18n/tr.po
+++ b/account_chart_update/i18n/tr.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Etkin"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Kapat"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Notlar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/vi.po b/account_chart_update/i18n/vi.po
index f38faf9b5..937ca1bbe 100644
--- a/account_chart_update/i18n/vi.po
+++ b/account_chart_update/i18n/vi.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "Hoạt động"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "Ðóng"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "Các ghi chú"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/zh_CN.po b/account_chart_update/i18n/zh_CN.po
index c4e460a9f..e92e30f61 100644
--- a/account_chart_update/i18n/zh_CN.po
+++ b/account_chart_update/i18n/zh_CN.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "激活"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "报废"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "备注"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
diff --git a/account_chart_update/i18n/zh_TW.po b/account_chart_update/i18n/zh_TW.po
index b4efaaa47..8be89aeb6 100644
--- a/account_chart_update/i18n/zh_TW.po
+++ b/account_chart_update/i18n/zh_TW.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: account-financial-tools (8.0)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:26+0000\n"
-"PO-Revision-Date: 2015-06-24 14:29+0000\n"
+"POT-Creation-Date: 2016-03-23 15:38+0000\n"
+"PO-Revision-Date: 2016-03-21 16:00+0000\n"
"Last-Translator: OCA Transbot \n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgid "# of digits"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
#, python-format
msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -38,6 +38,11 @@ msgstr ""
msgid "Account that needs to be updated (new or updated in the template)."
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,account_id:0
+msgid "Account to change on financial report"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_account_id:0
msgid "Account to update"
@@ -54,6 +59,17 @@ msgstr ""
msgid "Active"
msgstr "活躍"
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Add account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
+#, python-format
+msgid "Added account %s to financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid "Cancel"
@@ -75,7 +91,7 @@ msgid "Close"
msgstr "關閉"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:727
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
#, python-format
msgid "Code not found."
msgstr ""
@@ -96,7 +112,7 @@ msgid "Create/Update"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
#, python-format
msgid "Created account %s.\n"
msgstr ""
@@ -104,6 +120,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_uid:0
#: field:wizard.update.charts.accounts.account,create_uid:0
+#: field:wizard.update.charts.accounts.financial.report,create_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
#: field:wizard.update.charts.accounts.tax,create_uid:0
#: field:wizard.update.charts.accounts.tax.code,create_uid:0
@@ -113,6 +130,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,create_date:0
#: field:wizard.update.charts.accounts.account,create_date:0
+#: field:wizard.update.charts.accounts.financial.report,create_date:0
#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
#: field:wizard.update.charts.accounts.tax,create_date:0
#: field:wizard.update.charts.accounts.tax.code,create_date:0
@@ -120,49 +138,49 @@ msgid "Created on"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1113
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1188
#, python-format
msgid "Created or updated fiscal position %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:934
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
#, python-format
msgid "Created tax %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:870
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
#, python-format
msgid "Created tax code %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:879
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
#, python-format
msgid "Deactivated %d tax codes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:949
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
#, python-format
msgid "Deactivated %d taxes\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1024
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
#, python-format
msgid "Exception creating account %s: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:970
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
#, python-format
msgid "Exception setting the parent of account %s children: %s - %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1033
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
#, python-format
msgid "Exception writing account %s: %s - %s.\n"
msgstr ""
@@ -189,6 +207,24 @@ msgstr ""
msgid "Existing taxes are updated. Taxes are searched by name."
msgstr ""
+#. module: account_chart_update
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
+msgid ""
+"Financial report mapping that needs to be updated (new or updated in the "
+"template)."
+msgstr ""
+
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
+msgid "Financial report to update"
+msgstr ""
+
+#. module: account_chart_update
+#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: field:wizard.update.charts.accounts,financial_report_ids:0
+msgid "Financial reports"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
msgid "Fiscal position template"
@@ -221,6 +257,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,id:0
#: field:wizard.update.charts.accounts.account,id:0
+#: field:wizard.update.charts.accounts.financial.report,id:0
#: field:wizard.update.charts.accounts.fiscal.position,id:0
#: field:wizard.update.charts.accounts.tax,id:0
#: field:wizard.update.charts.accounts.tax.code,id:0
@@ -249,6 +286,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_uid:0
#: field:wizard.update.charts.accounts.account,write_uid:0
+#: field:wizard.update.charts.accounts.financial.report,write_uid:0
#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
#: field:wizard.update.charts.accounts.tax,write_uid:0
#: field:wizard.update.charts.accounts.tax.code,write_uid:0
@@ -258,6 +296,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts,write_date:0
#: field:wizard.update.charts.accounts.account,write_date:0
+#: field:wizard.update.charts.accounts.financial.report,write_date:0
#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
#: field:wizard.update.charts.accounts.tax,write_date:0
#: field:wizard.update.charts.accounts.tax.code,write_date:0
@@ -275,19 +314,19 @@ msgid "Messages and Errors"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:820
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
#, python-format
msgid "Name not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:532
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
#, python-format
msgid "Name or code not found."
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
#, python-format
msgid "Name or description not found."
msgstr ""
@@ -317,7 +356,7 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:764
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
#, python-format
msgid "None"
msgstr ""
@@ -329,6 +368,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,notes:0
+#: field:wizard.update.charts.accounts.financial.report,notes:0
#: field:wizard.update.charts.accounts.fiscal.position,notes:0
#: field:wizard.update.charts.accounts.tax,notes:0
#: field:wizard.update.charts.accounts.tax.code,notes:0
@@ -336,7 +376,7 @@ msgid "Notes"
msgstr "備註"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:375
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
#, python-format
msgid ""
"One or more errors detected!\n"
@@ -359,6 +399,17 @@ msgstr ""
msgid "Records to create/update"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Remove account"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
+#, python-format
+msgid "Removed account %s from financial report %s.\n"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,state:0
msgid "Status"
@@ -390,13 +441,13 @@ msgid "Summary of updated objects"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1058
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
#, python-format
msgid "Tax %s: The collected account can not be set.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1061
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
#, python-format
msgid "Tax %s: The paid account can not be set.\n"
msgstr ""
@@ -433,13 +484,13 @@ msgid "Tax codes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
#, python-format
msgid "Tax is disabled.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:765
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
#, python-format
msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
msgstr ""
@@ -471,189 +522,195 @@ msgid "Taxes"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#, python-format
+msgid "The Tax Included in Price field is different.\n"
+msgstr ""
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:636
#, python-format
msgid "The account_collected field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
#, python-format
msgid "The account_paid field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
#, python-format
msgid "The amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
#, python-format
msgid "The applicable type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
#, python-format
msgid "The base sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
#, python-format
msgid "The base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:588
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
#, python-format
msgid "The child depend field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
#, python-format
msgid "The code field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
#, python-format
msgid "The description field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
#, python-format
msgid "The domain field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
#, python-format
msgid "The include base amount field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
#, python-format
msgid "The info field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
#, python-format
msgid "The name field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
#, python-format
msgid "The name is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
#, python-format
msgid "The notprintable field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
#, python-format
msgid "The parent field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
#, python-format
msgid "The parent_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
#, python-format
msgid "The python compute field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
#, python-format
msgid "The reconcile is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
#, python-format
msgid "The ref_base_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
#, python-format
msgid "The ref_tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:506
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
#, python-format
msgid "The sequence field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
#, python-format
msgid "The sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
#, python-format
msgid "The tax sign field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
#, python-format
msgid "The tax_code_id field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
#, python-format
msgid "The template has accounts the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:770
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
#, python-format
msgid "The template has taxes the fiscal position instance does not.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
#, python-format
msgid "The type field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
#, python-format
msgid "The type is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:603
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
#, python-format
msgid "The type tax use field is different.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
#, python-format
msgid "The user type is different.\n"
msgstr ""
@@ -661,19 +718,20 @@ msgstr ""
#. module: account_chart_update
#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
msgid ""
-"This wizard will update your accounts, taxes and fiscal positions according "
-"to the selected chart template"
+"This wizard will update your accounts, taxes, fiscal positions and financial"
+" reports according to the selected chart template"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:562
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:684
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
#, python-format
msgid "To deactivate: not in the template"
msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,type:0
+#: field:wizard.update.charts.accounts.financial.report,type:0
#: field:wizard.update.charts.accounts.fiscal.position,type:0
#: field:wizard.update.charts.accounts.tax,type:0
#: field:wizard.update.charts.accounts.tax.code,type:0
@@ -698,6 +756,7 @@ msgstr ""
#. module: account_chart_update
#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
+#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
@@ -709,6 +768,11 @@ msgstr ""
msgid "Update children accounts parent"
msgstr ""
+#. module: account_chart_update
+#: field:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update financial report accounts"
+msgstr ""
+
#. module: account_chart_update
#: field:wizard.update.charts.accounts,update_fiscal_position:0
msgid "Update fiscal positions"
@@ -729,6 +793,11 @@ msgstr ""
msgid "Update taxes"
msgstr ""
+#. module: account_chart_update
+#: help:wizard.update.charts.accounts,update_financial_reports:0
+msgid "Update the financial reports mapping the accounts"
+msgstr ""
+
#. module: account_chart_update
#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
msgid ""
@@ -738,13 +807,13 @@ msgid ""
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
#, python-format
msgid "Updated account %s.\n"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:939
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
#, python-format
msgid "Updated tax %s.\n"
msgstr ""
@@ -755,7 +824,7 @@ msgid "Updated tax code"
msgstr ""
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:874
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
#, python-format
msgid "Updated tax code %s.\n"
msgstr ""
@@ -767,6 +836,11 @@ msgstr ""
msgid "Updated template"
msgstr ""
+#. module: account_chart_update
+#: selection:wizard.update.charts.accounts.financial.report,type:0
+msgid "Warning"
+msgstr ""
+
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
From fb33151be1516e842010e257c521e3ea9911c40f Mon Sep 17 00:00:00 2001
From: Jairo Llopis
Date: Wed, 25 May 2016 14:05:38 +0200
Subject: [PATCH 5/7] [MIG][9.0][account_chart_update] Migrate.
- New-style license headers.
- Remove .pot file.
- Remove tax codes stuff, now removed from v9.
- Refactor methods for search, create, update, delete. Now they are smaller, fitter, happier, more productive.
- Only update fields that have any kind of change on any updated record.
- Place the wizard in the configuration page, instead of its own menu item.
- Display amount of disabled taxes at ending page.
---
account_chart_update/README.rst | 38 +-
account_chart_update/__init__.py | 29 +-
account_chart_update/__openerp__.py | 44 +-
.../i18n/account_chart_update.pot | 788 ---------
account_chart_update/model/__init__.py | 1 -
.../model/account_tax_code.py | 37 -
.../views/account_config_settings_view.xml | 24 +
.../views/account_tax_code_view.xml | 17 -
account_chart_update/wizard/__init__.py | 28 +-
.../wizard/wizard_chart_update.py | 1439 ++++++-----------
.../wizard/wizard_chart_update_view.xml | 273 ++--
11 files changed, 717 insertions(+), 2001 deletions(-)
delete mode 100644 account_chart_update/i18n/account_chart_update.pot
delete mode 100644 account_chart_update/model/__init__.py
delete mode 100644 account_chart_update/model/account_tax_code.py
create mode 100644 account_chart_update/views/account_config_settings_view.xml
delete mode 100644 account_chart_update/views/account_tax_code_view.xml
diff --git a/account_chart_update/README.rst b/account_chart_update/README.rst
index 7c20b3ef6..197ca2f29 100644
--- a/account_chart_update/README.rst
+++ b/account_chart_update/README.rst
@@ -1,5 +1,10 @@
-Adds a wizard to update a company account chart from a chart template.
-======================================================================
+.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
+ :alt: License: AGPL-3
+
+===========================================================
+Detect changes and update the Account Chart from a template
+===========================================================
This is a pretty useful tool to update Odoo installations after tax reforms
on the official charts of accounts, or to apply fixes performed on the chart
@@ -17,15 +22,32 @@ The wizard:
Usage
=====
-The wizard, accesible from *Accounting > Configuration > Accounts > Update
-chart of accounts*, lets the user select what kind of objects must
-be checked/updated, and whether old records must be checked for changes and
-updates.
+The wizard, accesible from *Accounting > Configuration > Settings > Chart of
+Accounts > Update chart of accounts*, lets the user select what kind of objects
+must be checked/updated, and whether old records must be checked for changes
+and updates.
It will display all the objects to be created / updated with some information
about the detected differences, and allow the user to exclude records
individually.
+.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
+ :alt: Try me on Runbot
+ :target: https://runbot.odoo-community.org/runbot/92/9.0
+
+Known issues / Roadmap
+======================
+
+* Add tests.
+
+Bug Tracker
+===========
+
+Bugs are tracked on `GitHub Issues
+`_. In case of trouble,
+please check there if your issue has already been reported. If you spotted it
+first, help us smashing it by providing a detailed and welcomed feedback.
+
Credits
=======
@@ -39,6 +61,8 @@ Contributors
* invitu
* Stéphane Bidoul
* Antonio Espinosa
+* Jairo Llopis
+* Jacques-Etienne Baudoux
Maintainer
----------
@@ -53,4 +77,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
-To contribute to this module, please visit http://odoo-community.org.
+To contribute to this module, please visit https://odoo-community.org.
diff --git a/account_chart_update/__init__.py b/account_chart_update/__init__.py
index 4319b4213..c059a2261 100644
--- a/account_chart_update/__init__.py
+++ b/account_chart_update/__init__.py
@@ -1,28 +1,7 @@
# -*- coding: utf-8 -*-
-##############################################################################
-#
-# Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
-# Copyright (c) 2010 Pexego Sistemas Informáticos S.L.
-# (http://www.pexego.es)
-# @authors: Jordi Esteve (Zikzakmedia), Borja López Soilán (Pexego)
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published
-# by the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-"""
-Account Chart Update Wizard
-"""
+# © 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
+# © 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
+# © 2016 Jairo Llopis
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-from . import model
from . import wizard
diff --git a/account_chart_update/__openerp__.py b/account_chart_update/__openerp__.py
index bc45f8983..f79869139 100644
--- a/account_chart_update/__openerp__.py
+++ b/account_chart_update/__openerp__.py
@@ -1,51 +1,37 @@
# -*- coding: utf-8 -*-
-##############################################################################
-#
-# OpenERP, Open Source Management Solution
-# Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
-# Copyright (c) 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
-# Copyright (c) 2013 Joaquin Gutierrez (http://www.gutierrezweb.es)
-# Pedro Manuel Baeza
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published
-# by the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-# 2013/09/08 - Joaquín Gutierrez: Adaptación a la versión
-#
-##############################################################################
+# © 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
+# © 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
+# © 2013 Joaquin Gutierrez (http://www.gutierrezweb.es)
+# © 2015 Pedro Manuel Baeza
+# © 2016 Jairo Llopis
+# © 2016 Jacques-Etienne Baudoux
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': "Detect changes and update the Account Chart from a template",
- 'version': "8.0.1.2.0",
+ "summary": "Wizard to update a company's account chart from a template",
+ 'version': "9.0.1.0.0",
'author': "Zikzakmedia SL, "
"Pexego, "
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
"ACSONE A/V, "
+ "Tecnativa, "
+ "BCIM,"
"Odoo Community Association (OCA)",
'website': "http://odoo-community.org",
'depends': ["account"],
- 'category': "Generic Modules/Accounting",
+ 'category': "Accounting & Finance",
'contributors': [
'Joaquín Gutierrez',
'Pedro M. Baeza',
'invitu',
'Stéphane Bidoul',
+ 'Jairo Llopis',
+ 'Jacques-Etienne Baudoux',
],
'license': "AGPL-3",
- "demo": [],
"data": [
'wizard/wizard_chart_update_view.xml',
- 'views/account_tax_code_view.xml',
+ 'views/account_config_settings_view.xml',
],
- "active": False,
- 'installable': False
}
diff --git a/account_chart_update/i18n/account_chart_update.pot b/account_chart_update/i18n/account_chart_update.pot
deleted file mode 100644
index 6ae8713e7..000000000
--- a/account_chart_update/i18n/account_chart_update.pot
+++ /dev/null
@@ -1,788 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_chart_update
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Odoo Server 8.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-06-08 08:38+0000\n"
-"PO-Revision-Date: 2015-06-08 08:38+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,code_digits:0
-msgid "# of digits"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:784
-#, python-format
-msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,account_id:0
-msgid "Account template"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,update_account_id:0
-msgid "Account to update"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,account_ids:0
-msgid "Accounts"
-msgstr ""
-
-#. module: account_chart_update
-#: field:account.tax.code,active:0
-msgid "Active"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Cancel"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,chart_template_id:0
-msgid "Chart Template"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Chart of Accounts"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Close"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:725
-#, python-format
-msgid "Code not found."
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,company_id:0
-msgid "Company"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,continue_on_errors:0
-msgid "Continue on errors"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Create/Update"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1020
-#, python-format
-msgid "Created account %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,create_uid:0
-#: field:wizard.update.charts.accounts.account,create_uid:0
-#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
-#: field:wizard.update.charts.accounts.tax,create_uid:0
-#: field:wizard.update.charts.accounts.tax.code,create_uid:0
-msgid "Created by"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,create_date:0
-#: field:wizard.update.charts.accounts.account,create_date:0
-#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
-#: field:wizard.update.charts.accounts.tax,create_date:0
-#: field:wizard.update.charts.accounts.tax.code,create_date:0
-msgid "Created on"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1111
-#, python-format
-msgid "Created or updated fiscal position %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:932
-#, python-format
-msgid "Created tax %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:868
-#, python-format
-msgid "Created tax code %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:877
-#, python-format
-msgid "Deactivated %d tax codes\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:947
-#, python-format
-msgid "Deactivated %d taxes\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
-#, python-format
-msgid "Exception creating account %s: %s - %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:968
-#, python-format
-msgid "Exception setting the parent of account %s children: %s - %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1031
-#, python-format
-msgid "Exception writing account %s: %s - %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_account:0
-msgid "Existing accounts are updated. Accounts are searched by code."
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_fiscal_position:0
-msgid "Existing fiscal positions are updated. Fiscal positions are searched by name."
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_tax_code:0
-msgid "Existing tax codes are updated. Tax codes are searched by name."
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_tax:0
-msgid "Existing taxes are updated. Taxes are searched by name."
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
-msgid "Fiscal position template"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
-msgid "Fiscal position to update"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,fiscal_position_ids:0
-msgid "Fiscal positions"
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,lang:0
-msgid "For records searched by name (taxes, tax codes, fiscal positions), the template name will be matched against the record name on this language."
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,id:0
-#: field:wizard.update.charts.accounts.account,id:0
-#: field:wizard.update.charts.accounts.fiscal.position,id:0
-#: field:wizard.update.charts.accounts.tax,id:0
-#: field:wizard.update.charts.accounts.tax.code,id:0
-msgid "ID"
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,continue_on_errors:0
-msgid "If set, the wizard will continue to the next step even if there are minor errors (for example the parent account of a new account couldn't be set)."
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "If you leave these options set, the wizard will not just create new records, but also update records with changes (i.e. different tax amount)"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,lang:0
-msgid "Language"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,write_uid:0
-#: field:wizard.update.charts.accounts.account,write_uid:0
-#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
-#: field:wizard.update.charts.accounts.tax,write_uid:0
-#: field:wizard.update.charts.accounts.tax.code,write_uid:0
-msgid "Last Updated by"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,write_date:0
-#: field:wizard.update.charts.accounts.account,write_date:0
-#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
-#: field:wizard.update.charts.accounts.tax,write_date:0
-#: field:wizard.update.charts.accounts.tax.code,write_date:0
-msgid "Last Updated on"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Log"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,log:0
-msgid "Messages and Errors"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:818
-#, python-format
-msgid "Name not found."
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:530
-#, python-format
-msgid "Name or code not found."
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:647
-#, python-format
-msgid "Name or description not found."
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.tax.code,type:0
-msgid "New tax code"
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.account,type:0
-#: selection:wizard.update.charts.accounts.fiscal.position,type:0
-#: selection:wizard.update.charts.accounts.tax,type:0
-msgid "New template"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Next"
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,code_digits:0
-msgid "No. of digits to use for account code. Make sure it is the same number as existing accounts."
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:762
-#, python-format
-msgid "None"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Note: Not all the fields are tested for changes, just the main ones"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,notes:0
-#: field:wizard.update.charts.accounts.fiscal.position,notes:0
-#: field:wizard.update.charts.accounts.tax,notes:0
-#: field:wizard.update.charts.accounts.tax.code,notes:0
-msgid "Notes"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:373
-#, python-format
-msgid "One or more errors detected!\n"
-"\n"
-"%s"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Other options"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Previous"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Records to create/update"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,state:0
-msgid "Status"
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts,state:0
-msgid "Step 1"
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts,state:0
-msgid "Step 2"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Summary of created objects"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Summary of deleted objects"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Summary of updated objects"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1056
-#, python-format
-msgid "Tax %s: The collected account can not be set.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1059
-#, python-format
-msgid "Tax %s: The paid account can not be set.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: model:ir.model,name:account_chart_update.model_account_tax_code
-msgid "Tax Code"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
-msgid "Tax code template"
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.tax.code,type:0
-msgid "Tax code to deactivate"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
-msgid "Tax code to update"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,tax_code_ids:0
-msgid "Tax codes"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:570
-#, python-format
-msgid "Tax is disabled.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:763
-#, python-format
-msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax,tax_id:0
-msgid "Tax template"
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.tax,type:0
-msgid "Tax to deactivate"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax,update_tax_id:0
-msgid "Tax to update"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,tax_ids:0
-msgid "Taxes"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:621
-#, python-format
-msgid "The account_collected field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:618
-#, python-format
-msgid "The account_paid field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:578
-#, python-format
-msgid "The amount field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:582
-#, python-format
-msgid "The applicable type field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
-#, python-format
-msgid "The base sign field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:605
-#, python-format
-msgid "The base_code_id field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:586
-#, python-format
-msgid "The child depend field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:496
-#, python-format
-msgid "The code field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:574
-#, python-format
-msgid "The description field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:584
-#, python-format
-msgid "The domain field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
-#, python-format
-msgid "The include base amount field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:498
-#, python-format
-msgid "The info field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:494
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:572
-#, python-format
-msgid "The name field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:689
-#, python-format
-msgid "The name is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:502
-#, python-format
-msgid "The notprintable field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
-#, python-format
-msgid "The parent field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
-#, python-format
-msgid "The parent_id field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
-#, python-format
-msgid "The python compute field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:695
-#, python-format
-msgid "The reconcile is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:611
-#, python-format
-msgid "The ref_base_code_id field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
-#, python-format
-msgid "The ref_tax_code_id field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:504
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:576
-#, python-format
-msgid "The sequence field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:500
-#, python-format
-msgid "The sign field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
-#, python-format
-msgid "The tax sign field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
-#, python-format
-msgid "The tax_code_id field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:790
-#, python-format
-msgid "The template has accounts the fiscal position instance does not.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:768
-#, python-format
-msgid "The template has taxes the fiscal position instance does not.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:580
-#, python-format
-msgid "The type field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:691
-#, python-format
-msgid "The type is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:601
-#, python-format
-msgid "The type tax use field is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:693
-#, python-format
-msgid "The user type is different.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "This wizard will update your accounts, taxes and fiscal positions according to the selected chart template"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:560
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:682
-#, python-format
-msgid "To deactivate: not in the template"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,type:0
-#: field:wizard.update.charts.accounts.fiscal.position,type:0
-#: field:wizard.update.charts.accounts.tax,type:0
-#: field:wizard.update.charts.accounts.tax.code,type:0
-msgid "Type"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_account:0
-msgid "Update accounts"
-msgstr ""
-
-#. module: account_chart_update
-#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
-#: model:ir.ui.menu,name:account_chart_update.menu_wizard
-msgid "Update chart of accounts"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Update chart of accounts from a template"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
-#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
-#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
-#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
-msgid "Update chart wizard"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
-msgid "Update children accounts parent"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_fiscal_position:0
-msgid "Update fiscal positions"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Update records?"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_tax_code:0
-msgid "Update tax codes"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_tax:0
-msgid "Update taxes"
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
-msgid "Update the parent of accounts that seem (based on the code) to be children of the newly created ones. If you had an account 430 with a child 4300000, and a 4300 account is created, the 4300000 parent will be set to 4300."
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1029
-#, python-format
-msgid "Updated account %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:937
-#, python-format
-msgid "Updated tax %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.tax.code,type:0
-msgid "Updated tax code"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:872
-#, python-format
-msgid "Updated tax code %s.\n"
-""
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.account,type:0
-#: selection:wizard.update.charts.accounts.fiscal.position,type:0
-#: selection:wizard.update.charts.accounts.tax,type:0
-msgid "Updated template"
-msgstr ""
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts,state:0
-msgid "Wizard completed"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "or"
-msgstr ""
-
diff --git a/account_chart_update/model/__init__.py b/account_chart_update/model/__init__.py
deleted file mode 100644
index a7362088a..000000000
--- a/account_chart_update/model/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from . import account_tax_code
diff --git a/account_chart_update/model/account_tax_code.py b/account_chart_update/model/account_tax_code.py
deleted file mode 100644
index 3826b4c13..000000000
--- a/account_chart_update/model/account_tax_code.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-# OpenERP, Open Source Management Solution
-# Copyright (c) 2014 ACSONE SA/NV (http://acsone.eu)
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published
-# by the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-
-from openerp import models, fields
-
-
-class AccountTaxCode(models.Model):
- _inherit = 'account.tax.code'
-
- active = fields.Boolean('Active', default=True)
-
- def _sum(self, cr, uid, ids, name, args, context, where='',
- where_params=()):
- try:
- return super(AccountTaxCode, self)._sum(
- cr, uid, ids, name, args, context, where=where,
- where_params=where_params)
- except:
- cr.rollback()
- return dict.fromkeys(ids, 0.0)
diff --git a/account_chart_update/views/account_config_settings_view.xml b/account_chart_update/views/account_config_settings_view.xml
new file mode 100644
index 000000000..7a9ee4f36
--- /dev/null
+++ b/account_chart_update/views/account_config_settings_view.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+ Open Account Chart Update Wizard
+ account.config.settings
+
+
+
+
+
+
+
+
+
+
+
diff --git a/account_chart_update/views/account_tax_code_view.xml b/account_chart_update/views/account_tax_code_view.xml
deleted file mode 100644
index ed774374d..000000000
--- a/account_chart_update/views/account_tax_code_view.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
- account.tax.code.form.active
- account.tax.code
-
-
-
-
-
-
-
-
-
-
diff --git a/account_chart_update/wizard/__init__.py b/account_chart_update/wizard/__init__.py
index 787022f15..3c52c6a91 100644
--- a/account_chart_update/wizard/__init__.py
+++ b/account_chart_update/wizard/__init__.py
@@ -1,26 +1,6 @@
# -*- coding: utf-8 -*-
-##############################################################################
-#
-# Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
-# Copyright (c) 2010 Pexego Sistemas Informáticos S.L.
-# (http://www.pexego.es)
-# @authors: Jordi Esteve (Zikzakmedia), Borja López Soilán (Pexego)
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published
-# by the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-"""
-Account Chart Update Wizard
-"""
+# © 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
+# © 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
from . import wizard_chart_update
diff --git a/account_chart_update/wizard/wizard_chart_update.py b/account_chart_update/wizard/wizard_chart_update.py
index e3af7a6fd..e221fe075 100644
--- a/account_chart_update/wizard/wizard_chart_update.py
+++ b/account_chart_update/wizard/wizard_chart_update.py
@@ -1,103 +1,27 @@
# -*- coding: utf-8 -*-
-##############################################################################
-#
-# Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
-# Copyright (c) 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es)
-# @authors: Jordi Esteve (Zikzakmedia), Borja López Soilán (Pexego)
-# Copyright (c) 2015 Antiun Ingeniería S.L. (http://www.antiun.com)
-# Antonio Espinosa
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published
-# by the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-from openerp import models, fields, api, exceptions, _
-from openerp.osv.orm import except_orm
-from openerp.osv.osv import except_osv
+# © 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
+# © 2016 Jairo Llopis
+# © 2016 Jacques-Etienne Baudoux
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+from openerp import models, fields, api, exceptions, _, tools
+from contextlib import closing
+from cStringIO import StringIO
import logging
-
-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,
- },
- }
-
-
-class WizardLog:
- """
- *******************************************************************
- Small helper class to store the messages and errors on the wizard.
- *******************************************************************
- """
- def __init__(self):
- self.messages = []
- self.errors = []
- self._logger = logging.getLogger("account_chart_update")
-
- def add(self, message, is_error=False):
- """Adds a message to the log."""
- if is_error:
- self._logger.warning(u"Log line: %s" % message)
- self.errors.append(message)
- else:
- self._logger.debug(u"Log line: %s" % message)
- self.messages.append(message)
-
- def has_errors(self):
- """
- Returns whether errors where logged.
- """
- return self.errors
-
- def __call__(self):
- return "".join(self.messages)
-
- def __str__(self):
- return "".join(self.messages)
-
- def get_errors_str(self):
- return "".join(self.errors)
+_logger = logging.getLogger(__name__)
class WizardUpdateChartsAccounts(models.TransientModel):
_name = 'wizard.update.charts.accounts'
- @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.model
- def _get_chart(self):
- """Returns the default chart template."""
- templates = self.env['account.chart.template'].search([])
- return templates and templates[0] or False
-
state = fields.Selection(
- selection=[('init', 'Step 1'),
- ('ready', 'Step 2'),
+ selection=[('init', 'Configuration'),
+ ('ready', 'Select records to update'),
('done', 'Wizard completed')],
string='Status', readonly=True, default='init')
company_id = fields.Many2one(
@@ -105,20 +29,23 @@ class WizardUpdateChartsAccounts(models.TransientModel):
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, default=_get_chart)
+ 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(
- _get_lang_selection_options, 'Language', size=5,
- help="For records searched by name (taxes, tax codes, fiscal "
+ 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') or self.user.lang)
- update_tax_code = fields.Boolean(
- string='Update tax codes', default=True,
- help="Existing tax codes are updated. Tax codes are searched by name.")
+ 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.")
@@ -129,21 +56,11 @@ class WizardUpdateChartsAccounts(models.TransientModel):
string='Update fiscal positions', default=True,
help="Existing fiscal positions are updated. Fiscal positions are "
"searched by name.")
- update_children_accounts_parent = fields.Boolean(
- string="Update children accounts parent", default=True,
- help="Update the parent of accounts that seem (based on the code)"
- " to be children of the newly created ones."
- " If you had an account 430 with a child 4300000, and a 4300 "
- "account is created, the 4300000 parent will be set to 4300.")
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 (for example the parent account "
"of a new account couldn't be set).")
- tax_code_ids = fields.One2many(
- comodel_name='wizard.update.charts.accounts.tax.code',
- inverse_name='update_chart_wizard_id', string='Tax codes',
- ondelete='cascade')
tax_ids = fields.One2many(
comodel_name='wizard.update.charts.accounts.tax', ondelete='cascade',
inverse_name='update_chart_wizard_id', string='Taxes')
@@ -155,128 +72,86 @@ class WizardUpdateChartsAccounts(models.TransientModel):
comodel_name='wizard.update.charts.accounts.fiscal.position',
inverse_name='update_chart_wizard_id', string='Fiscal positions',
ondelete='cascade')
- new_tax_codes = fields.Integer(
- string='New tax codes', readonly=True,
- compute="_get_new_tax_codes_count")
new_taxes = fields.Integer(
- string='New taxes', readonly=True, compute="_get_new_taxes_count")
+ string='New taxes', compute="_compute_new_taxes_count")
new_accounts = fields.Integer(
- string='New accounts', readonly=True,
- compute="_get_new_accounts_count")
+ string='New accounts',
+ compute="_compute_new_accounts_count")
new_fps = fields.Integer(
- string='New fiscal positions', readonly=True,
- compute="_get_new_fps_count")
- updated_tax_codes = fields.Integer(
- string='Updated tax codes', readonly=True,
- compute="_get_updated_tax_codes_count")
+ string='New fiscal positions',
+ compute="_compute_new_fps_count")
updated_taxes = fields.Integer(
- string='Updated taxes', readonly=True,
- compute="_get_updated_taxes_count")
+ string='Updated taxes',
+ compute="_compute_updated_taxes_count")
updated_accounts = fields.Integer(
- string='Updated accounts', readonly=True,
- compute="_get_updated_accounts_count")
+ string='Updated accounts',
+ compute="_compute_updated_accounts_count")
updated_fps = fields.Integer(
- string='Updated fiscal positions', readonly=True,
- compute="_get_updated_fps_count")
- deleted_tax_codes = fields.Integer(
- string='Deactivated tax codes', readonly=True,
- compute="_get_deleted_tax_codes_count")
+ string='Updated fiscal positions',
+ compute="_compute_updated_fps_count")
deleted_taxes = fields.Integer(
- string='Deactivated taxes', readonly=True,
- compute="_get_deleted_taxes_count")
+ string='Deactivated taxes',
+ compute="_compute_deleted_taxes_count")
log = fields.Text(string='Messages and Errors', readonly=True)
- ##########################################################################
- # Compute methods
- ##########################################################################
-
- @api.one
- @api.depends('tax_code_ids')
- def _get_new_tax_codes_count(self):
- self.new_tax_codes = len(
- [x for x in self.tax_code_ids if x.type == 'new'])
-
- @api.one
- @api.depends('tax_ids')
- def _get_new_taxes_count(self):
- self.new_taxes = len(
- [x for x in self.tax_ids if x.type == 'new'])
-
- @api.one
- @api.depends('account_ids')
- def _get_new_accounts_count(self):
- self.new_accounts = len(
- [x for x in self.account_ids if x.type == 'new'])
-
- @api.one
- @api.depends('fiscal_position_ids')
- def _get_new_fps_count(self):
- self.new_fps = len(
- [x for x in self.fiscal_position_ids if x.type == 'new'])
-
- @api.one
- @api.depends('tax_code_ids')
- def _get_updated_tax_codes_count(self):
- self.updated_tax_codes = len(
- [x for x in self.tax_code_ids if x.type == 'updated'])
-
- @api.one
- @api.depends('tax_ids')
- def _get_updated_taxes_count(self):
- self.updated_taxes = len(
- [x for x in self.tax_ids if x.type == 'updated'])
-
- @api.one
- @api.depends('account_ids')
- def _get_updated_accounts_count(self):
- self.updated_accounts = len(
- [x for x in self.account_ids if x.type == 'updated'])
-
- @api.one
- @api.depends('fiscal_position_ids')
- def _get_updated_fps_count(self):
- self.updated_fps = len(
- [x for x in self.fiscal_position_ids if x.type == 'updated'])
-
- @api.one
- @api.depends('tax_code_ids')
- def _get_deleted_tax_codes_count(self):
- self.deleted_tax_codes = len(
- [x for x in self.tax_code_ids if x.type == 'deleted'])
-
- @api.one
- @api.depends('tax_ids')
- def _get_deleted_taxes_count(self):
- self.deleted_taxes = len(
- [x for x in self.tax_ids if x.type == 'deleted'])
-
- ##########################################################################
- # Main methods
- ##########################################################################
-
@api.model
- def name_search(self, name, args=None, operator='ilike', limit=80):
- """
- Redefine the search to search by company name.
- """
- if not name:
- name = '%'
- if not args:
- args = []
- args = args[:]
- records = self.search([('company_id', operator, name)] + args,
- limit=limit)
- return records.name_get()
+ 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
- def name_get(self):
- """Use the company name and template as name."""
- res = []
- for record in self:
- res.append(
- (record.id, "%s - %s" % (record.company_id.name,
- record.chart_template_id.name)))
- return res
+ @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'))
+
+ @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'))
+
+ @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):
@@ -311,782 +186,502 @@ class WizardUpdateChartsAccounts(models.TransientModel):
"""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.write({'state': 'init'})
- return _reopen(self)
+ 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)
- mapping_tax_codes = {}
- mapping_taxes = {}
- mapping_accounts = {}
- mapping_fps = {}
- # Get all chart templates involved
- wiz_obj = self.env['wizard.multi.charts.accounts']
- chart_template_ids = wiz_obj._get_chart_parent_ids(
- self.chart_template_id)
+
# Search for, and load, the records to create/update.
- if self.update_tax_code:
- self._find_tax_codes(mapping_tax_codes)
if self.update_tax:
- self._find_taxes(
- chart_template_ids, mapping_tax_codes, mapping_taxes,
- mapping_accounts)
+ self._find_taxes()
if self.update_account:
- self._find_accounts(mapping_accounts)
+ self._find_accounts()
if self.update_fiscal_position:
- self._find_fiscal_positions(
- chart_template_ids, mapping_taxes, mapping_accounts,
- mapping_fps)
+ self._find_fiscal_positions()
+
# Write the results, and go to the next step.
- self.write({'state': 'ready'})
- return _reopen(self)
+ self.state = 'ready'
+ return self._reopen()
@api.multi
def action_update_records(self):
- """Action that creates/updates the selected elements."""
- self_lang = self.with_context(lang=self.lang)
- log = WizardLog()
- taxes_pending_for_accounts = {}
- mapping_tax_codes = {}
- mapping_taxes = {}
- mapping_accounts = {}
- # Create or update the records.
- if self_lang.update_tax_code:
- self_lang._update_tax_codes(log, mapping_tax_codes)
- if self_lang.update_tax:
- taxes_pending_for_accounts = self._update_taxes(
- log, mapping_tax_codes, mapping_taxes)
- if self_lang.update_account:
- self_lang._update_accounts(log, mapping_taxes, mapping_accounts)
- if self_lang.update_tax:
- self_lang._update_taxes_pending_for_accounts(
- log, taxes_pending_for_accounts, mapping_accounts)
- if self_lang.update_fiscal_position:
- self_lang._update_fiscal_positions(
- log, mapping_taxes, mapping_accounts)
+ """Action that creates/updates/deletes the selected elements."""
+ self = self.with_context(lang=self.lang)
+
+ 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()
+ if self.update_account:
+ self._update_accounts()
+ if self.update_fiscal_position:
+ 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 log.has_errors() and not self_lang.continue_on_errors:
+ if self.log and not self.continue_on_errors:
raise exceptions.Warning(
- _("One or more errors detected!\n\n%s") % log.get_errors_str())
+ _("One or more errors detected!\n\n%s") % self.log)
+
# Store the data and go to the next step.
- self_lang.write({'state': 'done', 'log': log()})
- return _reopen(self_lang)
-
- ##########################################################################
- # Helper methods
- ##########################################################################
-
- @api.model
- def _get_depth_first_tax_code_template_ids(self, root_tax_code):
-
- def get_children(tct):
- for child in tct.child_ids:
- res.append(child)
- get_children(child)
-
- res = [root_tax_code]
- get_children(root_tax_code)
- return res
+ self.state = 'done'
+ return self._reopen()
@api.multi
- def map_tax_code_template(self, tax_code_template, mapping_tax_codes):
- """Adds a tax code template -> tax code id to the mapping."""
- if not tax_code_template or not self.chart_template_id:
- return self.env['account.tax.code']
- if mapping_tax_codes.get(tax_code_template):
- return mapping_tax_codes[tax_code_template]
- # prepare a search context in order to
- # search inactive tax codes too, to avoid re-creating
- # tax codes that have been deactivated before
- tax_code_obj = self.env['account.tax.code'].with_context(
- active_test=False)
- root_tax_code = self.chart_template_id.tax_code_root_id
- tax_code_code = tax_code_template.code
- if tax_code_code:
- tax_codes = tax_code_obj.search(
- [('code', '=', tax_code_code),
- ('company_id', '=', self.company_id.id)])
- if not tax_code_code or not tax_codes:
- tax_code_name = (
- tax_code_template == root_tax_code and
- self.company_id.name or tax_code_template.name)
- tax_codes = tax_code_obj.search(
- [('name', '=', tax_code_name),
- ('company_id', '=', self.company_id.id)])
- mapping_tax_codes[tax_code_template] = (
- tax_codes and tax_codes[0] or self.env['account.tax.code'])
- return mapping_tax_codes[tax_code_template]
-
- @api.multi
- def map_tax_template(self, tax_template, mapping_taxes):
- """Adds a tax template -> tax id to the mapping."""
- if not tax_template:
- return self.env['account.tax']
- if mapping_taxes.get(tax_template):
- return mapping_taxes[tax_template]
+ @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_obj = self.env['account.tax'].with_context(active_test=False)
- criteria = ['|',
- ('name', '=', tax_template.name),
- ('description', '=', tax_template.name)]
- if tax_template.description:
- criteria = ['|', '|'] + criteria
- criteria += [('description', '=', tax_template.description),
- ('name', '=', tax_template.description)]
- criteria += [('company_id', '=', self.company_id.id)]
- taxes = tax_obj.search(criteria)
- mapping_taxes[tax_template] = (
- taxes and taxes[0] or self.env['account.tax'])
- return mapping_taxes[tax_template]
+ 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
+
+ @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
- def map_account_template(self, account_template, mapping_accounts):
- """Adds an account template -> account id to the mapping."""
- if not account_template:
- return self.env['account.account']
- if mapping_accounts.get(account_template):
- return mapping_accounts[account_template]
- # In other case
- acc_obj = self.env['account.account']
- code = account_template.code or ''
- if account_template.type != 'view':
- if code and len(code) <= self.code_digits:
- code = '%s%s' % (code, '0' * (self.code_digits - len(code)))
- accounts = acc_obj.search(
- [('code', '=', code),
+ @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', map(self.padded_code, templates.mapped("code"))),
('company_id', '=', self.company_id.id)])
- mapping_accounts[account_template] = (
- accounts and accounts[0] or self.env['account.account'])
- return mapping_accounts[account_template]
@api.multi
- def map_fp_template(self, fp_template, mapping_fps):
- """Adds a fiscal position template -> fiscal position id to the
- mapping.
- """
- if not fp_template:
- return self.env['account.fiscal.position']
- if mapping_fps.get(fp_template):
- return mapping_fps[fp_template]
- # In other case
- fps = self.env['account.fiscal.position'].search(
- [('name', '=', fp_template.name),
+ @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)])
- mapping_fps[fp_template] = (
- fps and fps[0] or self.env['account.fiscal.position'])
- return mapping_fps[fp_template]
- ##########################################################################
- # Find methods
- ##########################################################################
+ @api.multi
+ @tools.ormcache("templates")
+ def find_fp_account_by_templates(self, templates):
+ result = []
+ for tpl in templates:
+ pos_id = self.find_fp_by_templates(tpl.position_id).id
+ src_id = self.find_account_by_templates(tpl.account_src_id).id
+ dest_id = self.find_account_by_templates(tpl.account_dest_id).id
+ mapping = self.env["account.fiscal.position.account"].search([
+ ("position_id", "=", pos_id),
+ ("account_src_id", "=", src_id),
+ ], limit=1)
+ if not mapping:
+ # create a new mapping
+ result.append((0, 0, {
+ 'position_id': pos_id,
+ 'account_src_id': src_id,
+ 'account_dest_id': dest_id,
+ }))
+ elif mapping.account_dest_id.id != dest_id:
+ # update an existing mapping
+ result.append((1, mapping.id, {'account_dest_id': dest_id}))
+ return result
- def _is_different_tax_code(
- self, tax_code, tax_code_template, mapping_tax_codes):
- """Check the tax code for changes.
- :return: An string that will be empty if no change detected.
+ @api.multi
+ @tools.ormcache("templates")
+ def find_fp_tax_by_templates(self, templates):
+ result = []
+ for tpl in templates:
+ pos_id = self.find_fp_by_templates(tpl.position_id).id
+ src_id = self.find_tax_by_templates(tpl.tax_src_id).id
+ dest_id = self.find_tax_by_templates(tpl.tax_dest_id).id
+ mapping = self.env["account.fiscal.position.tax"].search([
+ ("position_id", "=", pos_id),
+ ("tax_src_id", "=", src_id),
+ ], limit=1)
+ if not mapping:
+ # create a new mapping
+ result.append((0, 0, {
+ 'position_id': pos_id,
+ 'tax_src_id': src_id,
+ 'tax_dest_id': dest_id,
+ }))
+ elif mapping.tax_dest_id.id != dest_id:
+ # update an existing mapping
+ result.append((1, mapping.id, {'tax_dest_id': dest_id}))
+ return result
+
+ @api.model
+ @tools.ormcache("template")
+ def fields_to_ignore(self, template):
+ """Get fields that will not be used when checking differences.
+
+ :param str template:
+ The template record.
+
+ :return set:
+ Fields to ignore in diff.
"""
- notes = ""
- if tax_code.name != tax_code_template.name:
- notes += _("The name field is different.\n")
- if tax_code.code != tax_code_template.code:
- notes += _("The code field is different.\n")
- if tax_code.info != tax_code_template.info:
- notes += _("The info field is different.\n")
- if tax_code.sign != tax_code_template.sign:
- notes += _("The sign field is different.\n")
- if tax_code.notprintable != tax_code_template.notprintable:
- notes += _("The notprintable field is different.\n")
- if tax_code.sequence != tax_code_template.sequence:
- notes += _("The sequence field is different.\n")
- if tax_code.parent_id != self.map_tax_code_template(
- tax_code_template.parent_id, mapping_tax_codes):
- notes += _("The parent field is different.\n")
- return notes
-
- @api.one
- def _find_tax_codes(self, mapping_tax_codes):
- """Search for, and load, tax code templates to create/update."""
- wiz_tax_code_obj = self.env['wizard.update.charts.accounts.tax.code']
- # Remove previous tax codes
- self.tax_code_ids.unlink()
- # Search for new / updated tax codes
- children_tax_code_template = \
- self._get_depth_first_tax_code_template_ids(
- self.chart_template_id.tax_code_root_id)
- for tax_code_template in children_tax_code_template:
- if tax_code_template == self.chart_template_id.tax_code_root_id:
+ specials = {
+ "account.account.template": {
+ "code",
+ },
+ "account.tax.template": {
+ "account_id",
+ "refund_account_id",
+ }
+ }
+ specials = ({"display_name", "__last_update"} |
+ specials.get(template._name, set()))
+ for key, field in template._fields.iteritems():
+ if (template._name == "account.fiscal.position.template" and
+ key == 'tax_ids'):
continue
- tax_code = self.map_tax_code_template(
- tax_code_template, mapping_tax_codes)
- if not tax_code:
- wiz_tax_code_obj.create({
- 'tax_code_id': tax_code_template.id,
- 'update_chart_wizard_id': self.id,
- 'type': 'new',
- 'notes': _('Name or code not found.'),
- })
+ if ".template" in field.get_description(self.env).get(
+ "relation", ""):
+ specials.add(key)
+ 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 openerp.models.Model template:
+ Template record.
+
+ :param openerp.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)
+ for key, field in template._fields.iteritems():
+ if key in ignore:
+ continue
+
+ relation = expected = t = None
+ # Code must be padded to check equality
+ if key == "code":
+ expected = self.padded_code(template.code)
+
+ # Translate template records to reals for comparison
else:
- notes = self._is_different_tax_code(
- tax_code, tax_code_template, mapping_tax_codes)
- if notes:
- # Tax code to update
- wiz_tax_code_obj.create({
- 'tax_code_id': tax_code_template.id,
- 'update_chart_wizard_id': self.id,
- 'type': 'updated',
- 'update_tax_code_id': tax_code.id,
- 'notes': notes,
- })
- # search for tax codes not in the template and propose them for
- # deactivation
- root_code = self.map_tax_code_template(
- self.chart_template_id.tax_code_root_id, mapping_tax_codes)
- tax_codes_to_delete = self.env['account.tax.code'].search(
- [('company_id', '=', self.company_id.id),
- ('id', '!=', root_code.id)])
- for tax_code in mapping_tax_codes.values():
- if tax_code:
- tax_codes_to_delete -= tax_code
- for tax_code_to_delete in tax_codes_to_delete:
- wiz_tax_code_obj.create({
- 'tax_code_id': False,
- 'update_chart_wizard_id': self.id,
- 'type': 'deleted',
- 'update_tax_code_id': tax_code_to_delete.id,
- 'notes': _("To deactivate: not in the template"),
- })
+ 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))
+ expected = find(template[key])
- def _is_different_tax(self, tax, tax_template, mapping_taxes,
- mapping_tax_codes, mapping_accounts):
- """Check the tax for changes.
- :return: An string that will be empty if no change detected.
+ # Register detected differences
+ try:
+ if not relation:
+ if expected is not None and expected != real[key]:
+ result[key] = expected
+ elif template[key] != real[key]:
+ result[key] = template[key]
+ elif expected:
+ result[key] = expected
+ 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.
"""
- notes = ""
- if not tax.active:
- notes += _("Tax is disabled.\n")
- if tax.name != tax_template.name:
- notes += _("The name field is different.\n")
- if tax.description != tax_template.description:
- notes += _("The description field is different.\n")
- if tax.sequence != tax_template.sequence:
- notes += _("The sequence field is different.\n")
- if tax.amount != tax_template.amount:
- notes += _("The amount field is different.\n")
- if tax.type != tax_template.type:
- notes += _("The type field is different.\n")
- if tax.applicable_type != tax_template.applicable_type:
- notes += _("The applicable type field is different.\n")
- if tax.domain != tax_template.domain:
- notes += _("The domain field is different.\n")
- if tax.child_depend != tax_template.child_depend:
- notes += _("The child depend field is different.\n")
- if tax.parent_id != self.map_tax_template(tax_template.parent_id,
- mapping_taxes):
- notes += _("The parent_id field is different.\n")
- if tax.python_compute != tax_template.python_compute:
- notes += _("The python compute field is different.\n")
- # if tax.tax_group != tax_template.tax_group:
- # notes += _("The tax group field is different.\n")
- if tax.base_sign != tax_template.base_sign:
- notes += _("The base sign field is different.\n")
- if tax.tax_sign != tax_template.tax_sign:
- notes += _("The tax sign field is different.\n")
- if tax.include_base_amount != tax_template.include_base_amount:
- notes += _("The include base amount field is different.\n")
- if tax.type_tax_use != tax_template.type_tax_use:
- notes += _("The type tax use field is different.\n")
- if tax.price_include != tax_template.price_include:
- notes += _("The Tax Included in Price field is different.\n")
- # compare tax code fields
- if tax.base_code_id != self.map_tax_code_template(
- tax_template.base_code_id, mapping_tax_codes):
- notes += _("The base_code_id field is different.\n")
- if tax.tax_code_id != self.map_tax_code_template(
- tax_template.tax_code_id, mapping_tax_codes):
- notes += _("The tax_code_id field is different.\n")
- if tax.ref_base_code_id != self.map_tax_code_template(
- tax_template.ref_base_code_id, mapping_tax_codes):
- notes += _("The ref_base_code_id field is different.\n")
- if tax.ref_tax_code_id != self.map_tax_code_template(
- tax_template.ref_tax_code_id, mapping_tax_codes):
- notes += _("The ref_tax_code_id field is different.\n")
- # compare tax account fields
- if tax.account_paid_id != self.map_account_template(
- tax_template.account_paid_id, mapping_accounts):
- notes += _("The account_paid field is different.\n")
- if tax.account_collected_id != self.map_account_template(
- tax_template.account_collected_id, mapping_accounts):
- notes += _("The account_collected field is different.\n")
- return notes
+ 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))
- @api.one
- def _find_taxes(self, chart_template_ids, mapping_tax_codes,
- mapping_taxes, mapping_accounts):
- """Search for, and load, tax templates to create/update.
+ # Special for taxes
+ if template._name == "account.tax.template":
+ if not real.active:
+ result.append(_("Tax is disabled."))
- @param chart_template_ids: IDs of the chart templates to look on,
- calculated once in the calling method.
- """
- wiz_taxes_obj = self.env['wizard.update.charts.accounts.tax']
- delay_wiz_tax = []
- # Remove previous taxes
+ return "\n".join(result)
+
+ @api.multi
+ def _find_taxes(self):
+ """Search for, and load, tax templates to create/update/delete."""
+ found_taxes = self.env["account.tax"]
self.tax_ids.unlink()
- # Search for new / updated taxes
- tax_templates = self.env['account.tax.template'].search(
- [('chart_template_id', 'in', chart_template_ids)])
- for tax_template in tax_templates:
- # Ensure tax template is on the map (search for the mapped tax id)
- tax = self.map_tax_template(tax_template, mapping_taxes)
+
+ # Search for changes between template and real tax
+ for template in self.chart_template_ids.mapped("tax_template_ids"):
+ # Check if the template matches a real tax
+ tax = self.find_tax_by_templates(template)
+
if not tax:
- vals_wiz = {
- 'tax_id': tax_template.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.'),
- }
- if not tax_template.parent_id:
- wiz_taxes_obj.create(vals_wiz)
- else:
- delay_wiz_tax.append(vals_wiz)
+ })
else:
- # Check the tax for changes.
- notes = self._is_different_tax(
- tax, tax_template, mapping_taxes, mapping_tax_codes,
- mapping_accounts)
+ found_taxes |= tax
+
+ # Check the tax for changes
+ notes = self.diff_notes(template, tax)
if notes:
- # Tax code to update.
- wiz_taxes_obj.create({
- 'tax_id': tax_template.id,
+ # 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,
})
- for delay_vals_wiz in delay_wiz_tax:
- wiz_taxes_obj.create(delay_vals_wiz)
+
# search for taxes not in the template and propose them for
# deactivation
taxes_to_delete = self.env['account.tax'].search(
- [('company_id', '=', self.company_id.id)])
- for tax in mapping_taxes.values():
- if tax:
- taxes_to_delete -= tax
- for tax_to_delete in taxes_to_delete:
- wiz_taxes_obj.create({
- 'tax_id': False,
+ [('company_id', '=', self.company_id.id),
+ ("id", "not in", found_taxes.ids),
+ ("active", "=", True)])
+ for tax in taxes_to_delete:
+ self.tax_ids.create({
'update_chart_wizard_id': self.id,
'type': 'deleted',
- 'update_tax_id': tax_to_delete.id,
+ 'update_tax_id': tax.id,
'notes': _("To deactivate: not in the template"),
})
- def _is_different_account(self, account, account_template):
- notes = ""
- if (account.name != account_template.name and
- account.name != self.company_id.name):
- notes += _("The name is different.\n")
- if account.type != account_template.type:
- notes += _("The type is different.\n")
- if account.user_type != account_template.user_type:
- notes += _("The user type is different.\n")
- if account.reconcile != account_template.reconcile:
- notes += _("The reconcile is different.\n")
- return notes
-
- def _acc_tmpl_to_search_criteria(self, chart_template):
- root_account_id = chart_template.account_root_id.id
- acc_templ_criteria = [
- ('chart_template_id', '=', self.chart_template_id.id)]
- if root_account_id:
- acc_templ_criteria = ['|'] + acc_templ_criteria
- acc_templ_criteria += [
- '&', ('parent_id', 'child_of', [root_account_id]),
- ('chart_template_id', '=', False)]
- if chart_template.parent_id:
- acc_templ_criteria = ['|'] + acc_templ_criteria
- acc_templ_criteria += self._acc_tmpl_to_search_criteria(
- chart_template.parent_id)
- return acc_templ_criteria
-
- @api.one
- def _find_accounts(self, mapping_accounts):
- """Search for, and load, account templates to create/update."""
- wiz_accounts = self.env['wizard.update.charts.accounts.account']
- # Remove previous accounts
+ @api.multi
+ def _find_accounts(self):
+ """Load account templates to create/update."""
self.account_ids.unlink()
- # Search for new / updated accounts
- acc_templ_criteria = self._acc_tmpl_to_search_criteria(
- self.chart_template_id)
- account_templates = self.env['account.account.template'].search(
- acc_templ_criteria)
- for account_template in account_templates:
- # Ensure the account template is on the map (search for the mapped
- # account id).
- account = self.map_account_template(
- account_template, mapping_accounts)
+
+ for template in self.chart_template_ids.mapped("account_ids"):
+ # Search for a real account that matches the template
+ account = self.find_account_by_templates(template)
+
if not account:
- wiz_accounts.create({
- 'account_id': account_template.id,
+ # Account to be created
+ self.account_ids.create({
+ 'account_id': template.id,
'update_chart_wizard_id': self.id,
'type': 'new',
- 'notes': _('Code not found.'),
+ 'notes': _('No account found with this code.'),
})
else:
- # Check the account for changes.
- notes = self._is_different_account(account, account_template)
+ # Check the account for changes
+ notes = self.diff_notes(template, account)
if notes:
- # Account to update.
- wiz_accounts.create({
- 'account_id': account_template.id,
+ # 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,
})
- def _is_different_fiscal_position(self, fp, fp_template, mapping_taxes,
- mapping_accounts):
- notes = ""
- # Check fiscal position taxes for changes.
- if fp_template.tax_ids and fp.tax_ids:
- for fp_tax_templ in fp_template.tax_ids:
- found = False
- tax_src_id = self.map_tax_template(
- fp_tax_templ.tax_src_id, mapping_taxes)
- tax_dest_id = self.map_tax_template(
- fp_tax_templ.tax_dest_id, mapping_taxes)
- for fp_tax in fp.tax_ids:
- if fp_tax.tax_src_id == tax_src_id:
- if not fp_tax.tax_dest_id:
- if not tax_dest_id:
- found = True
- break
- else:
- if fp_tax.tax_dest_id == tax_dest_id:
- found = True
- break
- if not found:
- msg = fp_tax_templ.tax_dest_id.name or _('None')
- notes += _(
- "Tax mapping not found on the fiscal position "
- "instance: %s -> %s.\n") % (
- fp_tax_templ.tax_src_id.name, msg)
- elif fp_template.tax_ids and not fp.tax_ids:
- notes += _("The template has taxes the fiscal position instance "
- "does not.\n")
- # Check fiscal position accounts for changes
- if fp_template.account_ids and fp.account_ids:
- for fp_acc_templ in fp_template.account_ids:
- found = False
- acc_src_id = self.map_account_template(
- fp_acc_templ.account_src_id, mapping_accounts)
- acc_dest_id = self.map_account_template(
- fp_acc_templ.account_dest_id, mapping_accounts)
- for fp_acc in fp.account_ids:
- if (fp_acc.account_src_id == acc_src_id and
- fp_acc.account_dest_id == acc_dest_id):
- found = True
- break
- if not found:
- notes += _(
- "Account mapping not found on the fiscal "
- "position instance: %s -> %s.\n") % (
- fp_acc_templ.account_src_id.name,
- fp_acc_templ.account_dest_id.name)
- elif fp_template.account_ids and not fp.account_ids:
- notes += _("The template has accounts the fiscal position "
- "instance does not.\n")
- return notes
-
- @api.one
- def _find_fiscal_positions(self, chart_template_ids, mapping_taxes,
- mapping_accounts, mapping_fps):
- """Search for, and load, fiscal position templates to create/update.
-
- @param chart_template_ids: IDs of the chart templates to look on,
- calculated once in the calling method.
- """
+ @api.multi
+ def _find_fiscal_positions(self):
+ """Load fiscal position templates to create/update."""
wiz_fp = self.env['wizard.update.charts.accounts.fiscal.position']
- # Remove previous fiscal positions
self.fiscal_position_ids.unlink()
+
# Search for new / updated fiscal positions
- fp_templates = self.env['account.fiscal.position.template'].search(
- [('chart_template_id', 'in', chart_template_ids)])
- for fp_template in fp_templates:
- # Ensure the fiscal position template is on the map (search for the
- # mapped fiscal position id).
- fp = self.map_fp_template(fp_template, mapping_fps)
+ 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 = self.find_fp_by_templates(template)
if not fp:
- # New fiscal position template.
+ # Fiscal position to be created
wiz_fp.create({
- 'fiscal_position_id': fp_template.id,
+ 'fiscal_position_id': template.id,
'update_chart_wizard_id': self.id,
'type': 'new',
- 'notes': _('Name not found.')
+ 'notes': _('No fiscal position found with this name.')
})
- continue
- # Check the fiscal position for changes
- notes = self._is_different_fiscal_position(
- fp, fp_template, mapping_taxes, mapping_accounts)
- if notes:
- # Fiscal position template to update
- wiz_fp.create({
- 'fiscal_position_id': fp_template.id,
- 'update_chart_wizard_id': self.id,
- 'type': 'updated',
- 'update_fiscal_position_id': fp.id,
- 'notes': notes,
- })
-
- ##########################################################################
- # Update methods
- ##########################################################################
-
- def _prepare_tax_code_vals(self, tax_code_template, mapping_tax_codes):
- parent_code = self.map_tax_code_template(
- tax_code_template.parent_id, mapping_tax_codes)
- return {
- 'name': tax_code_template.name,
- 'code': tax_code_template.code,
- 'info': tax_code_template.info,
- 'parent_id': parent_code.id,
- 'company_id': self.company_id.id,
- 'sign': tax_code_template.sign,
- 'notprintable': tax_code_template.notprintable,
- 'sequence': tax_code_template.sequence,
- }
+ else:
+ # Check the fiscal position for changes
+ 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_tax_codes(self, log, mapping_tax_codes):
- """Process tax codes to create/update/deactivate."""
- tax_code_obj = self.env['account.tax.code']
- # process new/updated
- for wiz_tax_code in self.tax_code_ids:
- if wiz_tax_code.type == 'deleted':
- continue
- tax_code_template = wiz_tax_code.tax_code_id
- # Values
- vals = self._prepare_tax_code_vals(
- tax_code_template, mapping_tax_codes)
- if wiz_tax_code.type == 'new':
- # Create the tax code
- tax_code = tax_code_obj.create(vals)
- mapping_tax_codes[tax_code_template] = tax_code
- log.add(_("Created tax code %s.\n") % vals['name'])
- elif wiz_tax_code.update_tax_code_id:
- # Update the tax code
- wiz_tax_code.update_tax_code_id.write(vals)
- log.add(_("Updated tax code %s.\n") % vals['name'])
- # process deleted
- tax_codes_to_delete = self.tax_code_ids.filtered(
- lambda x: x.type == 'deleted').mapped('update_tax_code_id')
- tax_codes_to_delete.write({'active': False})
- log.add(_("Deactivated %d tax codes\n" % len(tax_codes_to_delete)))
-
- def _prepare_tax_vals(self, tax_template, mapping_tax_codes,
- mapping_taxes):
- return {
- 'active': True,
- 'name': tax_template.name,
- 'sequence': tax_template.sequence,
- 'amount': tax_template.amount,
- 'type': tax_template.type,
- 'applicable_type': tax_template.applicable_type,
- 'domain': tax_template.domain,
- 'parent_id': self.map_tax_template(
- tax_template.parent_id, mapping_taxes).id,
- 'child_depend': tax_template.child_depend,
- 'python_compute': tax_template.python_compute,
- 'python_compute_inv': tax_template.python_compute_inv,
- 'python_applicable': tax_template.python_applicable,
- 'base_code_id': (
- self.map_tax_code_template(
- tax_template.base_code_id, mapping_tax_codes).id),
- 'tax_code_id': (
- self.map_tax_code_template(
- tax_template.tax_code_id, mapping_tax_codes).id),
- 'base_sign': tax_template.base_sign,
- 'tax_sign': tax_template.tax_sign,
- 'ref_base_code_id': (
- self.map_tax_code_template(
- tax_template.ref_base_code_id, mapping_tax_codes).id),
- 'ref_tax_code_id': (
- self.map_tax_code_template(
- tax_template.ref_tax_code_id, mapping_tax_codes).id),
- 'ref_base_sign': tax_template.ref_base_sign,
- 'ref_tax_sign': tax_template.ref_tax_sign,
- 'include_base_amount': tax_template.include_base_amount,
- 'description': tax_template.description,
- 'company_id': self.company_id.id,
- 'type_tax_use': tax_template.type_tax_use,
- 'price_include': tax_template.price_include,
- }
-
- @api.multi
- def _update_taxes(self, log, mapping_tax_codes, mapping_taxes):
- """Process taxes to create/update."""
- tax_obj = self.env['account.tax']
- taxes_pending_for_accounts = {}
+ 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.debug(_("Deactivated tax %s."), tax)
continue
- tax_template = wiz_tax.tax_id
- vals = self._prepare_tax_vals(
- tax_template, mapping_taxes, mapping_tax_codes)
+
+ # Create tax
if wiz_tax.type == 'new':
- # Create a new tax.
- tax = tax_obj.create(vals)
- mapping_taxes[tax_template] = tax
- log.add(_("Created tax %s.\n") % tax_template.name)
- elif wiz_tax.update_tax_id:
- # Update the tax
- wiz_tax.update_tax_id.write(vals)
- tax = wiz_tax.update_tax_id
- log.add(_("Updated tax %s.\n") % tax_template.name)
- # Add to the dict of taxes waiting for accounts
- taxes_pending_for_accounts[tax] = {
- 'account_collected_id': tax_template.account_collected_id,
- 'account_paid_id': tax_template.account_paid_id,
- }
- # process deleted
- taxes_to_delete = self.tax_ids.filtered(
- lambda x: x.type == 'deleted').mapped('update_tax_id')
- taxes_to_delete.write({'active': False})
- log.add(_("Deactivated %d taxes\n" % len(taxes_to_delete)))
- return taxes_pending_for_accounts
+ tax = template._generate_tax(self.company_id)
+ tax = tax['tax_template_to_tax'][template.id]
+ _logger.debug(_("Created tax %s."), template.name)
- @api.multi
- def _update_children_accounts_parent(self, log, parent_account):
- """Updates the parent_id of accounts that seem to be children of the
- given account (accounts that start with the same code and are brothers
- of the first account).
- """
- account_obj = self.env['account.account']
- if not parent_account.parent_id or not parent_account.code:
- return False
- children = account_obj.search(
- [('company_id', '=', parent_account.company_id.id),
- ('parent_id', '=', parent_account.parent_id.id),
- ('code', '=like', "%s%%" % parent_account.code),
- ('id', '!=', parent_account.id)])
- if children:
- try:
- children.write({'parent_id': parent_account.id})
- except (exceptions.Warning, except_orm, except_osv) as ex:
- log.add(_("Exception setting the parent of account %s "
- "children: %s - %s.\n") % (parent_account.code,
- ex.name, ex.value), True)
- return True
+ # Update tax
+ else:
+ for key, value in self.diff_fields(template, tax).iteritems():
+ tax[key] = value
+ _logger.debug(_("Updated tax %s."), template.name)
+ wiz_tax.update_tax_id = tax
- def _prepare_account_vals(self, account_template, mapping_taxes,
- mapping_accounts):
- root_account_id = self.chart_template_id.account_root_id.id
- # Get the taxes
- taxes = [self.map_tax_template(tax_template, mapping_taxes)
- for tax_template in account_template.tax_ids
- if self.map_tax_template(tax_template, mapping_taxes)]
- # Calculate the account code (we need to add zeros to non-view
- # account codes)
- code = account_template.code or ''
- if account_template.type != 'view':
- if len(code) and len(code) <= self.code_digits:
- code = '%s%s' % (code, '0' * (self.code_digits - len(code)))
- return {
- 'name': ((root_account_id == account_template.id) and
- self.company_id.name or account_template.name),
+ def _create_account_from_template(self, account_template):
+ return self.env["account.account"].create({
+ 'name': account_template.name,
'currency_id': account_template.currency_id,
- 'code': code,
- 'type': account_template.type,
- 'user_type': account_template.user_type.id,
+ 'code': self.padded_code(account_template.code),
+ 'user_type_id': account_template.user_type_id.id,
'reconcile': account_template.reconcile,
- 'shortcut': account_template.shortcut,
'note': account_template.note,
- 'parent_id': (
- self.map_account_template(
- account_template.parent_id, mapping_accounts).id),
- 'tax_ids': [(6, 0, taxes)],
+ 'tax_ids': [
+ (6, 0,
+ self.find_tax_by_templates(account_template.tax_ids).ids),
+ ],
'company_id': self.company_id.id,
- }
+ })
@api.multi
- def _update_accounts(self, log, mapping_taxes, mapping_accounts):
+ def _update_accounts(self):
"""Process accounts to create/update."""
- account_obj = self.env['account.account']
- # Disable the parent_store computing on account_account
- # during the batch processing,
- # We will force _parent_store_compute afterwards.
- account_obj._init = True
for wiz_account in self.account_ids:
- account_template = wiz_account.account_id
- vals = self._prepare_account_vals(
- account_template, mapping_taxes, mapping_accounts)
+ account, template = (wiz_account.update_account_id,
+ wiz_account.account_id)
if wiz_account.type == 'new':
# Create the account
try:
- account = account_obj.create(vals)
- mapping_accounts[account_template] = account
- log.add(_("Created account %s.\n") % vals['code'])
- except (exceptions.Warning, except_orm, except_osv) as ex:
- log.add(_("Exception creating account %s: %s - %s.\n") %
- (vals['code'], ex.name, ex.value), True)
+ with self.env.cr.savepoint():
+ account = (
+ self._create_account_from_template(
+ template))
+ _logger.debug(
+ _("Created account %s."),
+ account.code)
+ except exceptions.except_orm:
+ _logger.exception(
+ _("Exception creating account %s."),
+ template.code)
else:
# Update the account
- account = wiz_account.update_account_id
- # Don't write again the same code - it may give an error
- code = vals.pop('code')
try:
- account.write(vals)
- log.add(_("Updated account %s.\n") % code)
- except (exceptions.Warning, except_orm, except_osv) as ex:
- log.add(_("Exception writing account %s: %s - %s.\n") %
- (code, ex.name, ex.value), True)
- # Set this account as the parent of the accounts that seem to
- # be its children (brothers starting with the same code).
- if self.update_children_accounts_parent:
- self._update_children_accounts_parent(log, account)
- # Reenable the parent_store computing on account_account
- # and force the recomputation.
- account_obj._init = False
- account_obj._parent_store_compute()
+ with self.env.cr.savepoint():
+ for key, value in (self.diff_fields(template, account)
+ .iteritems()):
+ account[key] = value
+ _logger.debug(_("Updated account %s."), account)
+ except exceptions.except_orm:
+ _logger.exception(
+ _("Exception writing account %s."),
+ account)
+ wiz_account.update_account_id = account
+
+ if self.update_tax:
+ self._update_taxes_pending_for_accounts()
@api.multi
- def _update_taxes_pending_for_accounts(
- self, log, taxes_pending_for_accounts, mapping_accounts):
+ 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 tax, accounts in taxes_pending_for_accounts.items():
- # Ensure the related account templates are on the map.
- for key, value in accounts.iteritems():
- if not value:
- continue
- if not self.map_account_template(value, mapping_accounts):
- if key == 'account_collected_id':
- log.add(_("Tax %s: The collected account can not be "
- "set.\n") % tax.name, True)
- else:
- log.add(_("Tax %s: The paid account can not be set.\n")
- % tax.name, True)
- tax.write({key: self.map_account_template(
- value, mapping_accounts).id})
+ for wiz_tax in self.tax_ids:
+ if wiz_tax.type == "deleted" or not wiz_tax.update_tax_id:
+ continue
- def _prepare_fp_vals(self, fp_template, mapping_taxes, mapping_accounts):
+ for field in ("account_id", "refund_account_id"):
+ wiz_tax.update_tax_id[field] = (
+ self.find_account_by_templates(wiz_tax.tax_id[field]))
+
+ 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.map_tax_template(
- fp_tax.tax_src_id, mapping_taxes).id,
- 'tax_dest_id': self.map_tax_template(
- fp_tax.tax_dest_id, mapping_taxes).id,
+ 'tax_src_id': self.find_tax_by_templates(
+ fp_tax.tax_src_id).id,
+ 'tax_dest_id': self.find_tax_by_templates(
+ fp_tax.tax_dest_id).id,
})
# Account mappings
account_mapping = []
@@ -1094,11 +689,11 @@ class WizardUpdateChartsAccounts(models.TransientModel):
# Create the fp account mapping
account_mapping.append({
'account_src_id': (
- self.map_account_template(
- fp_account.account_src_id, mapping_accounts).id),
+ self.find_account_by_templates(
+ fp_account.account_src_id).id),
'account_dest_id': (
- self.map_account_template(
- fp_account.account_dest_id, mapping_accounts).id),
+ self.find_account_by_templates(
+ fp_account.account_dest_id).id),
})
return {
'company_id': self.company_id.id,
@@ -1108,45 +703,30 @@ class WizardUpdateChartsAccounts(models.TransientModel):
}
@api.multi
- def _update_fiscal_positions(self, log, mapping_taxes, mapping_accounts):
+ def _update_fiscal_positions(self):
"""Process fiscal position templates to create/update."""
for wiz_fp in self.fiscal_position_ids:
- fp_template = wiz_fp.fiscal_position_id
- vals = self._prepare_fp_vals(
- fp_template, mapping_taxes, mapping_accounts)
+ fp, template = (wiz_fp.update_fiscal_position_id,
+ wiz_fp.fiscal_position_id)
if wiz_fp.type == 'new':
# Create a new fiscal position
- fp = self.env['account.fiscal.position'].create(vals)
+ fp = self.env['account.fiscal.position'].create(
+ self._prepare_fp_vals(template))
else:
- # Update the given fiscal position (remove the tax and account
- # mappings, that will be regenerated later)
- fp = wiz_fp.update_fiscal_position_id
- fp.tax_ids.unlink()
- fp.account_ids.unlink()
- fp.write(vals)
- log.add(_("Created or updated fiscal position %s.\n") %
- fp_template.name)
-
-
-class WizardUpdateChartsAccountsTaxCode(models.TransientModel):
- _name = 'wizard.update.charts.accounts.tax.code'
- _description = ("Tax code that needs to be updated (new or updated in the "
- "template).")
-
- tax_code_id = fields.Many2one(
- comodel_name='account.tax.code.template', string='Tax code 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 tax code'),
- ('updated', 'Updated tax code'),
- ('deleted', 'Tax code to deactivate')], string='Type')
- update_tax_code_id = fields.Many2one(
- comodel_name='account.tax.code', string='Tax code to update',
- required=False, ondelete='set null')
- notes = fields.Text('Notes')
+ # Update the given fiscal position
+ for key, value in self.diff_fields(template, fp).iteritems():
+ if isinstance(value, (list, tuple)):
+ for cmd in value:
+ if cmd[0] == 0:
+ fp[key].create(cmd[2])
+ elif cmd[0] == 1:
+ fp[key].browse(cmd[1]).write(cmd[2])
+ else:
+ fp[key] = value
+ wiz_fp.update_fiscal_position_id = fp
+ _logger.debug(
+ _("Created or updated fiscal position %s."),
+ template.name)
class WizardUpdateChartsAccountsTax(models.TransientModel):
@@ -1163,11 +743,16 @@ class WizardUpdateChartsAccountsTax(models.TransientModel):
type = fields.Selection(
selection=[('new', 'New template'),
('updated', 'Updated template'),
- ('deleted', 'Tax to deactivate')], string='Type')
+ ('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')
+ notes = fields.Text('Notes', readonly=True)
class WizardUpdateChartsAccountsAccount(models.TransientModel):
@@ -1184,11 +769,13 @@ class WizardUpdateChartsAccountsAccount(models.TransientModel):
)
type = fields.Selection(
selection=[('new', 'New template'),
- ('updated', 'Updated template')], string='Type')
+ ('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')
+ notes = fields.Text('Notes', readonly=True)
class WizardUpdateChartsAccountsFiscalPosition(models.TransientModel):
@@ -1204,8 +791,10 @@ class WizardUpdateChartsAccountsFiscalPosition(models.TransientModel):
string='Update chart wizard', required=True, ondelete='cascade')
type = fields.Selection(
selection=[('new', 'New template'),
- ('updated', 'Updated template')], string='Type')
+ ('updated', 'Updated template')],
+ string='Type',
+ readonly=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')
+ notes = fields.Text('Notes', readonly=True)
diff --git a/account_chart_update/wizard/wizard_chart_update_view.xml b/account_chart_update/wizard/wizard_chart_update_view.xml
index 55af0eaeb..2a5550ada 100644
--- a/account_chart_update/wizard/wizard_chart_update_view.xml
+++ b/account_chart_update/wizard/wizard_chart_update_view.xml
@@ -1,156 +1,133 @@
-
-
+
+
-
+
+ Update Chart of Accounts from a Chart Template
+ wizard.update.charts.accounts
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- Update Chart of Accounts from a Chart Template
-
- wizard.update.charts.accounts
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ Update chart of accounts
+ ir.actions.act_window
+ wizard.update.charts.accounts
+ form
+ form
+ new
+
-
-
-
- or
-
-
-
-
-
- or
-
-
-
-
-
-
-
-
-
-
-
- Update chart of accounts
- ir.actions.act_window
- wizard.update.charts.accounts
- form
- form
- new
-
-
-
-
-
-
+
From d034f8f5961e03f02b946d8e9fe052fb214b6665 Mon Sep 17 00:00:00 2001
From: "Pedro M. Baeza"
Date: Mon, 14 Aug 2017 19:36:35 +0200
Subject: [PATCH 6/7] [FIX] account_chart_update: Fix fiscal position mapping
---
.../views/account_config_settings_view.xml | 12 +-
.../wizard/wizard_chart_update.py | 112 +++++++++---------
2 files changed, 62 insertions(+), 62 deletions(-)
diff --git a/account_chart_update/views/account_config_settings_view.xml b/account_chart_update/views/account_config_settings_view.xml
index 7a9ee4f36..b0aa34a5b 100644
--- a/account_chart_update/views/account_config_settings_view.xml
+++ b/account_chart_update/views/account_config_settings_view.xml
@@ -8,14 +8,14 @@
account.config.settings
-
+
+ name="%(action_wizard_update_chart)d"
+ context="{'default_company_id': company_id}"
+ type="action"
+ class="oe_link"
+ />
diff --git a/account_chart_update/wizard/wizard_chart_update.py b/account_chart_update/wizard/wizard_chart_update.py
index e221fe075..51dc57c34 100644
--- a/account_chart_update/wizard/wizard_chart_update.py
+++ b/account_chart_update/wizard/wizard_chart_update.py
@@ -213,7 +213,6 @@ class WizardUpdateChartsAccounts(models.TransientModel):
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()
@@ -221,7 +220,6 @@ class WizardUpdateChartsAccounts(models.TransientModel):
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()
@@ -309,51 +307,57 @@ class WizardUpdateChartsAccounts(models.TransientModel):
('company_id', '=', self.company_id.id)])
@api.multi
- @tools.ormcache("templates")
- def find_fp_account_by_templates(self, templates):
+ @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).id
- src_id = self.find_account_by_templates(tpl.account_src_id).id
- dest_id = self.find_account_by_templates(tpl.account_dest_id).id
- mapping = self.env["account.fiscal.position.account"].search([
- ("position_id", "=", pos_id),
- ("account_src_id", "=", src_id),
- ], limit=1)
- if not mapping:
+ pos = self.find_fp_by_templates(tpl.position_id)
+ src = self.find_account_by_templates(tpl.account_src_id)
+ dest = self.find_account_by_templates(tpl.account_dest_id)
+ mappings = self.env["account.fiscal.position.account"].search([
+ ("position_id", "=", pos.id),
+ ("account_src_id", "=", src.id),
+ ])
+ existing = mappings.filtered(lambda x: x.account_dest_id == dest)
+ 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,
- }))
- elif mapping.account_dest_id.id != dest_id:
- # update an existing mapping
- result.append((1, mapping.id, {'account_dest_id': dest_id}))
+ '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")
- def find_fp_tax_by_templates(self, templates):
+ @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).id
- src_id = self.find_tax_by_templates(tpl.tax_src_id).id
- dest_id = self.find_tax_by_templates(tpl.tax_dest_id).id
- mapping = self.env["account.fiscal.position.tax"].search([
- ("position_id", "=", pos_id),
- ("tax_src_id", "=", src_id),
- ], limit=1)
- if not mapping:
+ pos = self.find_fp_by_templates(tpl.position_id)
+ src = self.find_tax_by_templates(tpl.tax_src_id)
+ dest = self.find_tax_by_templates(tpl.tax_dest_id)
+ mappings = self.env["account.fiscal.position.tax"].search([
+ ("position_id", "=", pos.id),
+ ("tax_src_id", "=", src.id),
+ ])
+ existing = mappings.filtered(lambda x: x.tax_dest_id == dest)
+ 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,
- }))
- elif mapping.tax_dest_id.id != dest_id:
- # update an existing mapping
- result.append((1, mapping.id, {'tax_dest_id': dest_id}))
+ '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
@@ -376,11 +380,17 @@ class WizardUpdateChartsAccounts(models.TransientModel):
"refund_account_id",
}
}
+ to_include = {
+ "account.fiscal.position.template": [
+ 'tax_ids',
+ 'account_ids',
+ ],
+ }
specials = ({"display_name", "__last_update"} |
specials.get(template._name, set()))
for key, field in template._fields.iteritems():
- if (template._name == "account.fiscal.position.template" and
- key == 'tax_ids'):
+ if (template._name in to_include and
+ key in to_include[template._name]):
continue
if ".template" in field.get_description(self.env).get(
"relation", ""):
@@ -405,12 +415,10 @@ class WizardUpdateChartsAccounts(models.TransientModel):
for key, field in template._fields.iteritems():
if key in ignore:
continue
-
relation = expected = t = None
# Code must be padded to check equality
if key == "code":
expected = self.padded_code(template.code)
-
# Translate template records to reals for comparison
else:
relation = field.get_description(self.env).get("relation", "")
@@ -426,8 +434,11 @@ class WizardUpdateChartsAccounts(models.TransientModel):
"fp_" if ".fiscal.position" in relation
else "",
t))
- expected = find(template[key])
-
+ if ".fiscal.position" in relation:
+ # Special case
+ expected = find(template[key], real[key])
+ else:
+ expected = find(template[key])
# Register detected differences
try:
if not relation:
@@ -439,7 +450,6 @@ class WizardUpdateChartsAccounts(models.TransientModel):
result[key] = expected
except KeyError:
pass
-
return result
@api.model
@@ -463,12 +473,10 @@ class WizardUpdateChartsAccounts(models.TransientModel):
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
@@ -554,7 +562,6 @@ class WizardUpdateChartsAccounts(models.TransientModel):
"""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)])
@@ -715,14 +722,7 @@ class WizardUpdateChartsAccounts(models.TransientModel):
else:
# Update the given fiscal position
for key, value in self.diff_fields(template, fp).iteritems():
- if isinstance(value, (list, tuple)):
- for cmd in value:
- if cmd[0] == 0:
- fp[key].create(cmd[2])
- elif cmd[0] == 1:
- fp[key].browse(cmd[1]).write(cmd[2])
- else:
- fp[key] = value
+ fp[key] = value
wiz_fp.update_fiscal_position_id = fp
_logger.debug(
_("Created or updated fiscal position %s."),
@@ -792,8 +792,8 @@ class WizardUpdateChartsAccountsFiscalPosition(models.TransientModel):
type = fields.Selection(
selection=[('new', 'New template'),
('updated', 'Updated template')],
- string='Type',
- readonly=True)
+ 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')
From 5d2ef73f316afc0702d46393c89801c610212c70 Mon Sep 17 00:00:00 2001
From: "Pedro M. Baeza"
Date: Mon, 14 Aug 2017 20:07:34 +0200
Subject: [PATCH 7/7] [IMP] account_chart_update: Improve translations +
Spanish
---
account_chart_update/README.rst | 4 +-
account_chart_update/i18n/es.po | 832 +++++-------------
.../views/account_config_settings_view.xml | 2 +-
.../wizard/wizard_chart_update.py | 3 +-
4 files changed, 242 insertions(+), 599 deletions(-)
diff --git a/account_chart_update/README.rst b/account_chart_update/README.rst
index 197ca2f29..fcd8d41af 100644
--- a/account_chart_update/README.rst
+++ b/account_chart_update/README.rst
@@ -56,11 +56,11 @@ Contributors
* Jordi Esteve
* Borja López Soilán
-* Pedro M. Baeza
+* Pedro M. Baeza
* Joaquín Gutierrez
* invitu
* Stéphane Bidoul
-* Antonio Espinosa
+* Antonio Espinosa
* Jairo Llopis
* Jacques-Etienne Baudoux
diff --git a/account_chart_update/i18n/es.po b/account_chart_update/i18n/es.po
index c97ae51de..e0be001c4 100644
--- a/account_chart_update/i18n/es.po
+++ b/account_chart_update/i18n/es.po
@@ -1,54 +1,32 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
-# * account_chart_update
-#
-# Translators:
-# Accounts-Payable - Alkemics, 2015
-# Ahmet Altınışık , 2015
-# Alejandro Santana , 2015
-# Antonio Trueba, 2016
-# Carles Antoli , 2016
-# Chen-Do LU , 2015
-# Dimitrios Glentadakis , 2013-2014, 2015-2016
-# Efstathios Iosifidis , 2014
-# FIRST AUTHOR , 2012
-# François Breysse , 2015
-# Guewen Baconnier , 2015
-# Hotellook, 2014
-# Jim Spentzos, 2014
-# Matjaž Mozetič , 2015
-# njeudy , 2015
-# Pedro M. Baeza , 2015
-# Pierre Verkest , 2015
-# Rudolf Schnapka , 2016
-# SaFi J. , 2015
+# * account_chart_update
+#
msgid ""
msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-02 01:08+0000\n"
-"PO-Revision-Date: 2016-04-07 16:09+0000\n"
-"Last-Translator: Carles Antoli \n"
-"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n"
+"POT-Creation-Date: 2017-08-14 17:37+0000\n"
+"PO-Revision-Date: 2017-08-14 17:37+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: \n"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,code_digits:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_code_digits
msgid "# of digits"
msgstr "Nº de dígitos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:808
-#, python-format
-msgid "Account mapping not found on the fiscal position instance: %s -> %s.\n"
-msgstr "Mapeo de cuenta no encontrado en la instancia de posición fiscal: %s -> %s.\n"
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
+msgid " or "
+msgstr " or "
#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,account_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_account_id
msgid "Account template"
msgstr "Plantilla de cuenta"
@@ -58,302 +36,260 @@ msgid "Account that needs to be updated (new or updated in the template)."
msgstr "Cuenta que necesita actualizarse (nueva o actualizada en la plantilla)"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts.financial.report,account_id:0
-msgid "Account to change on financial report"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,update_account_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_account_id
msgid "Account to update"
msgstr "Cuenta a actualizar"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,account_ids:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_ids
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Accounts"
msgstr "Cuentas"
#. module: account_chart_update
-#: field:account.tax.code,active:0
-msgid "Active"
-msgstr "Activo"
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.financial.report,type:0
-msgid "Add account"
-msgstr "Añadir cuenta"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1197
-#, python-format
-msgid "Added account %s to financial report %s.\n"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,chart_template_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_id
msgid "Chart Template"
msgstr "Plantilla plan contable"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
+msgid "Chart Templates"
+msgstr "Plantillas de cuentas"
+
+#. module: account_chart_update
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Chart of Accounts"
msgstr "Plan contable"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Close"
msgstr "Cerrar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:749
-#, python-format
-msgid "Code not found."
-msgstr "Código no encontrado."
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,company_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_company_id
msgid "Company"
msgstr "Compañía"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,continue_on_errors:0
-msgid "Continue on errors"
-msgstr "Continuar tras errores"
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Configuration"
+msgstr "Configuración"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
+msgid "Continue on errors"
+msgstr "Continuar tras algún error"
+
+#. module: account_chart_update
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Create/Update"
msgstr "Crear/Actualizar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1095
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:645
#, python-format
-msgid "Created account %s.\n"
-msgstr "Creada cuenta %s.\n"
+msgid "Created account %s."
+msgstr "Creada cuenta %s."
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,create_uid:0
-#: field:wizard.update.charts.accounts.account,create_uid:0
-#: field:wizard.update.charts.accounts.financial.report,create_uid:0
-#: field:wizard.update.charts.accounts.fiscal.position,create_uid:0
-#: field:wizard.update.charts.accounts.tax,create_uid:0
-#: field:wizard.update.charts.accounts.tax.code,create_uid:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_create_uid
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_create_uid
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_create_uid
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,create_date:0
-#: field:wizard.update.charts.accounts.account,create_date:0
-#: field:wizard.update.charts.accounts.financial.report,create_date:0
-#: field:wizard.update.charts.accounts.fiscal.position,create_date:0
-#: field:wizard.update.charts.accounts.tax,create_date:0
-#: field:wizard.update.charts.accounts.tax.code,create_date:0
+#: 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:1188
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:728
#, python-format
-msgid "Created or updated fiscal position %s.\n"
-msgstr "Creada o actualizada posición fiscal %s.\n"
+msgid "Created or updated fiscal position %s."
+msgstr "Creada o actualizada posición fiscal %s."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1007
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:607
#, python-format
-msgid "Created tax %s.\n"
-msgstr "Creado impuesto %s.\n"
+msgid "Created tax %s."
+msgstr "Creado impuesto %s."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:942
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:600
#, python-format
-msgid "Created tax code %s.\n"
-msgstr "Creado código de impuesto %s.\n"
+msgid "Deactivated tax %s."
+msgstr "Desactivado impuesto %s."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:951
-#, python-format
-msgid "Deactivated %d tax codes\n"
-msgstr "Desactivados %d códigos de impuestos\n"
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_deleted_taxes
+msgid "Deactivated taxes"
+msgstr "Impuestos desactivados"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1022
-#, python-format
-msgid "Deactivated %d taxes\n"
-msgstr "Desactivados %d impuestos\n"
+#: selection:wizard.update.charts.accounts.fiscal.position,type:0
+msgid "Deleted template"
+msgstr "Plantilla borrada"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1097
-#, python-format
-msgid "Exception creating account %s: %s - %s.\n"
-msgstr "Excepción creando cuenta %s: %s - %s.\n"
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
+msgid "Determines where the tax is selectable. Note : 'None' means a tax can't be used by itself, however it can still be used in a group."
+msgstr "Determina dónde puede seleccionarse un impuesto. Nota : 'Ninguno' significa que un impuesto no puede ser usado por sí mismo; aun así, puede utilizarse en un grupo."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1043
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:474
#, python-format
-msgid "Exception setting the parent of account %s children: %s - %s.\n"
-msgstr "Excepción estableciendo el padre de los hijos de la cuenta %s: %s - %s.\n"
+msgid "Differences in these fields: %s."
+msgstr "Diferencias en este(os) campo(s)s: %s."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1108
-#, python-format
-msgid "Exception writing account %s: %s - %s.\n"
-msgstr "Excepción escribiendo cuenta %s: %s - %s.\n"
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_display_name
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_display_name
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_display_name
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_account:0
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:649
+#, python-format
+msgid "Exception creating account %s."
+msgstr "Excepción creando cuenta %s."
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:661
+#, python-format
+msgid "Exception writing account %s."
+msgstr "Excepción escribiendo cuenta %s."
+
+#. module: account_chart_update
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_update_account
msgid "Existing accounts are updated. Accounts are searched by code."
-msgstr "Las cuentas contables existentes serán actualizadas. Las cuentas se buscarán por código."
+msgstr "Las cuentas existentes son actualizadas. Las cuentas se buscan por código."
#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_fiscal_position:0
-msgid ""
-"Existing fiscal positions are updated. Fiscal positions are searched by "
-"name."
-msgstr "Las posiciones fiscales existentes serán actualizadas. Las posiciones fiscales se buscarán por nombre."
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
+msgid "Existing fiscal positions are updated. Fiscal positions are searched by name."
+msgstr "Las posiciones fiscales existentes son actualizadas. Las posiciones fiscales se buscan por nombre."
#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_tax_code:0
-msgid "Existing tax codes are updated. Tax codes are searched by name."
-msgstr "Los códigos de impuestos existentes serán actualizados. Los códigos de impuestos se buscarán por nombre."
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_tax:0
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_update_tax
msgid "Existing taxes are updated. Taxes are searched by name."
-msgstr "Los impuestos existentes serán actualizados. Los impuestos se buscarán por nombre."
+msgstr "Los impuestos existentes son actualizados. Los impuestos se buscan por nombre."
#. module: account_chart_update
-#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_financial_report
-msgid ""
-"Financial report mapping that needs to be updated (new or updated in the "
-"template)."
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.financial.report,financial_report_id:0
-msgid "Financial report to update"
-msgstr ""
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,financial_report_ids:0
-msgid "Financial reports"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.fiscal.position,fiscal_position_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_fiscal_position_id
msgid "Fiscal position template"
msgstr "Plantilla de posición fiscal"
#. module: account_chart_update
#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_fiscal_position
-msgid ""
-"Fiscal position that needs to be updated (new or updated in the template)."
+msgid "Fiscal position that needs to be updated (new or updated in the template)."
msgstr "Posición fiscal que necesita actualizarse (nueva o actualizada en la plantilla)."
#. module: account_chart_update
-#: field:wizard.update.charts.accounts.fiscal.position,update_fiscal_position_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_update_fiscal_position_id
msgid "Fiscal position to update"
msgstr "Posición fiscal a actualizar"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,fiscal_position_ids:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_ids
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Fiscal positions"
msgstr "Posiciones fiscales"
#. module: account_chart_update
-#: help:wizard.update.charts.accounts,lang:0
-msgid ""
-"For records searched by name (taxes, tax codes, fiscal positions), the "
-"template name will be matched against the record name on this language."
-msgstr "Para los registros de impuestos, códigos de impuestos y posiciones fiscales, sus nombres se comparan con los de la plantilla seleccionada."
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_lang
+msgid "For records searched by name (taxes, fiscal positions), the template name will be matched against the record name on this language."
+msgstr "Para registros buscados por nombre (impuestos, posiciones fiscales), el nombre de la plantilla se casará contra el nombre del registro en este idioma."
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,id:0
-#: field:wizard.update.charts.accounts.account,id:0
-#: field:wizard.update.charts.accounts.financial.report,id:0
-#: field:wizard.update.charts.accounts.fiscal.position,id:0
-#: field:wizard.update.charts.accounts.tax,id:0
-#: field:wizard.update.charts.accounts.tax.code,id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_id
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_id
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_id
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_id
msgid "ID"
-msgstr "ID"
+msgstr "ID (identificación)"
#. module: account_chart_update
-#: help:wizard.update.charts.accounts,continue_on_errors:0
-msgid ""
-"If set, the wizard will continue to the next step even if there are minor "
-"errors (for example the parent account of a new account couldn't be set)."
-msgstr "Si está marcado, el asistente continuará al paso siguiente incluso si hay errores menores (por ejemplo, no se pudo establecer la cuenta padre de una nueva cuenta)."
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_continue_on_errors
+msgid "If set, the wizard will continue to the next step even if there are minor errors."
+msgstr "Si está establecido, este asistente continuará al siguiente paso incluso si hay errores menores."
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid ""
-"If you leave these options set, the wizard will not just create new records,"
-" but also update records with changes (i.e. different tax amount)"
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
+msgid "If you leave these options set, the wizard will not just create new records, but also update records with changes (i.e. different tax amount)"
msgstr "Si deja esta opción marcada, el asistente creará no sólo nuevos registros, si no que también actualizará aquellos con cambios (por ejemplo, diferente porcentaje de impuesto)"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,lang:0
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_chart_template_ids
+msgid "Includes all chart templates."
+msgstr "Incluye todos los planes de cuenta."
+
+#. module: account_chart_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_lang
msgid "Language"
msgstr "Idioma"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,write_uid:0
-#: field:wizard.update.charts.accounts.account,write_uid:0
-#: field:wizard.update.charts.accounts.financial.report,write_uid:0
-#: field:wizard.update.charts.accounts.fiscal.position,write_uid:0
-#: field:wizard.update.charts.accounts.tax,write_uid:0
-#: field:wizard.update.charts.accounts.tax.code,write_uid:0
-msgid "Last Updated by"
-msgstr "Última actualización por"
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts___last_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account___last_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position___last_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax___last_update
+msgid "Last Modified on"
+msgstr "Última modificación en"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,write_date:0
-#: field:wizard.update.charts.accounts.account,write_date:0
-#: field:wizard.update.charts.accounts.financial.report,write_date:0
-#: field:wizard.update.charts.accounts.fiscal.position,write_date:0
-#: field:wizard.update.charts.accounts.tax,write_date:0
-#: field:wizard.update.charts.accounts.tax.code,write_date:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_write_uid
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_write_uid
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_write_uid
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_write_uid
+msgid "Last Updated by"
+msgstr "Última actualización de"
+
+#. module: account_chart_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_write_date
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_write_date
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_write_date
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Log"
msgstr "Registro"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,log:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_log
msgid "Messages and Errors"
msgstr "Mensajes y errores"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:842
-#, python-format
-msgid "Name not found."
-msgstr "Nombre no encontrado."
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:543
-#, python-format
-msgid "Name or code not found."
-msgstr "Nombre o código no encontrado."
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:662
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:499
#, python-format
msgid "Name or description not found."
msgstr "Nombre o descripción no encontrada."
#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.tax.code,type:0
-msgid "New tax code"
-msgstr "Nuevos códigos de impuesto"
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_accounts
+msgid "New accounts"
+msgstr "Nuevas cuentas"
+
+#. module: account_chart_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_fps
+msgid "New fiscal positions"
+msgstr "New fiscal positions"
+
+#. module: account_chart_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_new_taxes
+msgid "New taxes"
+msgstr "Nuevos impuestos"
#. module: account_chart_update
#: selection:wizard.update.charts.accounts.account,type:0
@@ -363,159 +299,97 @@ msgid "New template"
msgstr "Nueva plantilla"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Next"
msgstr "Siguiente"
#. module: account_chart_update
-#: help:wizard.update.charts.accounts,code_digits:0
-msgid ""
-"No. of digits to use for account code. Make sure it is the same number as "
-"existing accounts."
-msgstr "Nº de dígitos a usar para el código de cuenta. Asegúrese que este número es el mismo que el de las cuentas existentes."
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:786
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:545
#, python-format
-msgid "None"
-msgstr "Ninguno"
+msgid "No account found with this code."
+msgstr "No se ha encontrado una cuenta con este código."
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Note: Not all the fields are tested for changes, just the main ones"
-msgstr "Nota: No se comprueban todos los campos, sólo los importantes"
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:577
+#, python-format
+msgid "No fiscal position found with this name."
+msgstr "No se ha encontrado un posición fiscal con este nombre."
#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,notes:0
-#: field:wizard.update.charts.accounts.financial.report,notes:0
-#: field:wizard.update.charts.accounts.fiscal.position,notes:0
-#: field:wizard.update.charts.accounts.tax,notes:0
-#: field:wizard.update.charts.accounts.tax.code,notes:0
+#: model:ir.model.fields,help:account_chart_update.field_wizard_update_charts_accounts_code_digits
+msgid "No. of digits to use for account code. Make sure it is the same number as existing accounts."
+msgstr "Nº de dígitos a usar para el código de cuenta. Asegúrese que es el mismo número que el de las cuentas existentes."
+
+#. module: account_chart_update
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
+msgid "Note: Only the changed fields are updated."
+msgstr "Nota: Sólo los campos cambiados son actualizados."
+
+#. module: account_chart_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_notes
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_notes
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_notes
msgid "Notes"
msgstr "Notas"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:386
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:253
#, python-format
-msgid ""
-"One or more errors detected!\n"
+msgid "One or more errors detected!\n"
+"\n"
+"%s"
+msgstr "¡Uno o más errores detectados!\n"
"\n"
"%s"
-msgstr "¡Uno o más errores detectados!\n\n%s"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Other options"
msgstr "Otras opciones"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Previous"
msgstr "Anterior"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Records to create/update"
msgstr "Registros a crear/actualizar"
#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.financial.report,type:0
-msgid "Remove account"
-msgstr ""
+#: selection:wizard.update.charts.accounts,state:0
+msgid "Select records to update"
+msgstr "Selecciones registros a actualizar"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1203
-#, python-format
-msgid "Removed account %s from financial report %s.\n"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,state:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_state
msgid "Status"
msgstr "Estado"
#. module: account_chart_update
-#: selection:wizard.update.charts.accounts,state:0
-msgid "Step 1"
-msgstr "Paso 1"
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts,state:0
-msgid "Step 2"
-msgstr "Paso 2"
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Summary of created objects"
msgstr "Resumen de objetos creados"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Summary of deleted objects"
-msgstr "Resumen de objetos eliminados"
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Summary of updated objects"
msgstr "Resumen de objetos actualizados"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1133
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type_tax_use
+msgid "Tax Scope"
+msgstr "Ámbito del impuesto"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:479
#, python-format
-msgid "Tax %s: The collected account can not be set.\n"
-msgstr "Impuesto %s: No se pudo establecer la cuenta a recibir.\n"
+msgid "Tax is disabled."
+msgstr "El impuesto está deshabilitado."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1136
-#, python-format
-msgid "Tax %s: The paid account can not be set.\n"
-msgstr "Impuesto %s: No se pudo establecer la cuenta a pagar.\n"
-
-#. module: account_chart_update
-#: model:ir.model,name:account_chart_update.model_account_tax_code
-msgid "Tax Code"
-msgstr "Código de impuesto"
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax.code,tax_code_id:0
-msgid "Tax code template"
-msgstr "Plantilla de código de impuesto"
-
-#. module: account_chart_update
-#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts_tax_code
-msgid "Tax code that needs to be updated (new or updated in the template)."
-msgstr "Código de impuesto que necesita actualizarse (nuevo o actualizado en la plantilla)."
-
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.tax.code,type:0
-msgid "Tax code to deactivate"
-msgstr "Código de impuesto a desactivar"
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax.code,update_tax_code_id:0
-msgid "Tax code to update"
-msgstr "Código de impuesto a actualizar"
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,tax_code_ids:0
-msgid "Tax codes"
-msgstr "Códigos de impuestos"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:583
-#, python-format
-msgid "Tax is disabled.\n"
-msgstr "Impuesto está desactivado.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:787
-#, python-format
-msgid "Tax mapping not found on the fiscal position instance: %s -> %s.\n"
-msgstr "Mapeo de cuenta no encontrado en la instancia de la posición fiscal: %s -> %s.\n"
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax,tax_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_tax_id
msgid "Tax template"
msgstr "Plantilla de impuesto"
@@ -530,323 +404,97 @@ msgid "Tax to deactivate"
msgstr "Impuesto a desactivar"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts.tax,update_tax_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_tax_id
msgid "Tax to update"
msgstr "Impuesto a actualizar"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-#: field:wizard.update.charts.accounts,tax_ids:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_ids
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Taxes"
msgstr "Impuestos"
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:616
-#, python-format
-msgid "The Tax Included in Price field is different.\n"
-msgstr ""
+#: 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:636
-#, python-format
-msgid "The account_collected field is different.\n"
-msgstr "El campo account_collected es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:633
-#, python-format
-msgid "The account_paid field is different.\n"
-msgstr "El campo account_paid es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:591
-#, python-format
-msgid "The amount field is different.\n"
-msgstr "El campo importe es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:595
-#, python-format
-msgid "The applicable type field is different.\n"
-msgstr "El campo tipo aplicable es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:608
-#, python-format
-msgid "The base sign field is different.\n"
-msgstr "El campo signo base es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:620
-#, python-format
-msgid "The base_code_id field is different.\n"
-msgstr "El campo base_code_id es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:599
-#, python-format
-msgid "The child depend field is different.\n"
-msgstr "El campo impuesto en hijos es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:509
-#, python-format
-msgid "The code field is different.\n"
-msgstr "El campo código es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:587
-#, python-format
-msgid "The description field is different.\n"
-msgstr "El campo descripción es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:597
-#, python-format
-msgid "The domain field is different.\n"
-msgstr "El campo dominio es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:612
-#, python-format
-msgid "The include base amount field is different.\n"
-msgstr "El campo incluir en importe base es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:511
-#, python-format
-msgid "The info field is different.\n"
-msgstr "El campo info es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:507
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:585
-#, python-format
-msgid "The name field is different.\n"
-msgstr "El campo nombre es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:704
-#, python-format
-msgid "The name is different.\n"
-msgstr "El nombre es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:515
-#, python-format
-msgid "The notprintable field is different.\n"
-msgstr "El campo no se imprime en factura es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:520
-#, python-format
-msgid "The parent field is different.\n"
-msgstr "El campo padre es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:602
-#, python-format
-msgid "The parent_id field is different.\n"
-msgstr "El campo parent_id es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:604
-#, python-format
-msgid "The python compute field is different.\n"
-msgstr "El campo cálculo python es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:710
-#, python-format
-msgid "The reconcile is different.\n"
-msgstr "El campo reconciliar es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:626
-#, python-format
-msgid "The ref_base_code_id field is different.\n"
-msgstr "El campo ref_base_code_id es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:629
-#, python-format
-msgid "The ref_tax_code_id field is different.\n"
-msgstr "El campo ref_tax_code_id es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:517
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:589
-#, python-format
-msgid "The sequence field is different.\n"
-msgstr "El campo secuencia es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:513
-#, python-format
-msgid "The sign field is different.\n"
-msgstr "El campo signo es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:610
-#, python-format
-msgid "The tax sign field is different.\n"
-msgstr "El campo signo de impuesto es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:623
-#, python-format
-msgid "The tax_code_id field is different.\n"
-msgstr "El campo tax_code_id es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:814
-#, python-format
-msgid "The template has accounts the fiscal position instance does not.\n"
-msgstr "La plantilla tiene cuentas que la instancia de posición fiscal no.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:792
-#, python-format
-msgid "The template has taxes the fiscal position instance does not.\n"
-msgstr "La plantilla tiene impuestos que la instancia de posición fiscal no.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:593
-#, python-format
-msgid "The type field is different.\n"
-msgstr "El campo tipo es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:706
-#, python-format
-msgid "The type is different.\n"
-msgstr "El tipo es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:614
-#, python-format
-msgid "The type tax use field is different.\n"
-msgstr "El campo aplicación impuesto es diferente.\n"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:708
-#, python-format
-msgid "The user type is different.\n"
-msgstr "El tipo de usuario es diferente.\n"
-
-#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid ""
-"This wizard will update your accounts, taxes, fiscal positions and financial"
-" reports according to the selected chart template"
-msgstr ""
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:573
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:697
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:527
#, python-format
msgid "To deactivate: not in the template"
msgstr "A desactivar: no está en la plantilla"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,type:0
-#: field:wizard.update.charts.accounts.financial.report,type:0
-#: field:wizard.update.charts.accounts.fiscal.position,type:0
-#: field:wizard.update.charts.accounts.tax,type:0
-#: field:wizard.update.charts.accounts.tax.code,type:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_type
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_type
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_type
msgid "Type"
msgstr "Tipo"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_account:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_account
msgid "Update accounts"
msgstr "Actualizar cuentas"
#. module: account_chart_update
#: model:ir.actions.act_window,name:account_chart_update.action_wizard_update_chart
-#: model:ir.ui.menu,name:account_chart_update.menu_wizard
msgid "Update chart of accounts"
-msgstr "Actualizar plan de cuentas"
+msgstr "Actualizar plan contable"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "Update chart of accounts from a template"
-msgstr "Actualizar plan contable desde una plantilla"
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts.account,update_chart_wizard_id:0
-#: field:wizard.update.charts.accounts.financial.report,update_chart_wizard_id:0
-#: field:wizard.update.charts.accounts.fiscal.position,update_chart_wizard_id:0
-#: field:wizard.update.charts.accounts.tax,update_chart_wizard_id:0
-#: field:wizard.update.charts.accounts.tax.code,update_chart_wizard_id:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_account_update_chart_wizard_id
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_fiscal_position_update_chart_wizard_id
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_tax_update_chart_wizard_id
msgid "Update chart wizard"
-msgstr "Asistente para actualizar el plan contable"
+msgstr "Asistente de actualización de plan"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_children_accounts_parent:0
-msgid "Update children accounts parent"
-msgstr "Actualizar padre de cuentas hijas"
+#: model:ir.ui.view,arch_db:account_chart_update.view_account_config_settings
+msgid "Update chart template"
+msgstr "Actualizar plan contable"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_financial_reports:0
-msgid "Update financial report accounts"
-msgstr ""
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_fiscal_position:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_fiscal_position
msgid "Update fiscal positions"
msgstr "Actualizar posiciones fiscales"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
+#: model:ir.ui.view,arch_db:account_chart_update.view_update_multi_chart
msgid "Update records?"
msgstr "¿Actualizar registros?"
#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_tax_code:0
-msgid "Update tax codes"
-msgstr "Actualizar códigos de impuestos"
-
-#. module: account_chart_update
-#: field:wizard.update.charts.accounts,update_tax:0
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_update_tax
msgid "Update taxes"
msgstr "Actualizar impuestos"
#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_financial_reports:0
-msgid "Update the financial reports mapping the accounts"
-msgstr ""
-
-#. module: account_chart_update
-#: help:wizard.update.charts.accounts,update_children_accounts_parent:0
-msgid ""
-"Update the parent of accounts that seem (based on the code) to be children "
-"of the newly created ones. If you had an account 430 with a child 4300000, "
-"and a 4300 account is created, the 4300000 parent will be set to 4300."
-msgstr "Actualizar el padre de las cuentas que parecen (basándose en el código) ser hijas de las cuentas recién creadas. Si tiene una cuenta 430 con una hija 4300000, y se crea una cuenta 4300, se establecerá la cuenta 4300 como padre de la cuenta 4300000."
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1106
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:658
#, python-format
-msgid "Updated account %s.\n"
-msgstr "Actualizada cuenta %s.\n"
+msgid "Updated account %s."
+msgstr "Cuentas %s actualizada."
#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:1012
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_accounts
+msgid "Updated accounts"
+msgstr "Cuentas actualizadas"
+
+#. module: account_chart_update
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_fps
+msgid "Updated fiscal positions"
+msgstr "Posiciones fiscales actualizadas"
+
+#. module: account_chart_update
+#: code:addons/account_chart_update/wizard/wizard_chart_update.py:613
#, python-format
-msgid "Updated tax %s.\n"
-msgstr "Actualizado impuesto %s.\n"
+msgid "Updated tax %s."
+msgstr "Impuesto %s actualizado."
#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.tax.code,type:0
-msgid "Updated tax code"
-msgstr "Códigos de impuesto actualizados"
-
-#. module: account_chart_update
-#: code:addons/account_chart_update/wizard/wizard_chart_update.py:946
-#, python-format
-msgid "Updated tax code %s.\n"
-msgstr "Actualizado código de impuesto %s.\n"
+#: model:ir.model.fields,field_description:account_chart_update.field_wizard_update_charts_accounts_updated_taxes
+msgid "Updated taxes"
+msgstr "Impuestos actualizados"
#. module: account_chart_update
#: selection:wizard.update.charts.accounts.account,type:0
@@ -855,17 +503,13 @@ msgstr "Actualizado código de impuesto %s.\n"
msgid "Updated template"
msgstr "Plantilla actualizada"
-#. module: account_chart_update
-#: selection:wizard.update.charts.accounts.financial.report,type:0
-msgid "Warning"
-msgstr "Advertencia"
-
#. module: account_chart_update
#: selection:wizard.update.charts.accounts,state:0
msgid "Wizard completed"
msgstr "Asistente completado"
#. module: account_chart_update
-#: view:wizard.update.charts.accounts:account_chart_update.view_update_multi_chart
-msgid "or"
-msgstr "o"
+#: model:ir.model,name:account_chart_update.model_wizard_update_charts_accounts
+msgid "wizard.update.charts.accounts"
+msgstr "wizard.update.charts.accounts"
+
diff --git a/account_chart_update/views/account_config_settings_view.xml b/account_chart_update/views/account_config_settings_view.xml
index b0aa34a5b..96daf056a 100644
--- a/account_chart_update/views/account_config_settings_view.xml
+++ b/account_chart_update/views/account_config_settings_view.xml
@@ -10,7 +10,7 @@
-