diff --git a/account_move_template/README.rst b/account_move_template/README.rst new file mode 100644 index 000000000..f9a03a41e --- /dev/null +++ b/account_move_template/README.rst @@ -0,0 +1,151 @@ +===================== +Account Move Template +===================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:20cc4f7ed2bc199b6b560d11a525972060b3a3c13d37bc666eefdd711683e412 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github + :target: https://github.com/OCA/account-financial-tools/tree/16.0/account_move_template + :alt: OCA/account-financial-tools +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-financial-tools-16-0/account-financial-tools-16-0-account_move_template + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-financial-tools&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +The user can configure journal entries templates, useful for recurring entries. +The amount of each template line can be computed (through python code) +or kept as user input. + +If user input, when using the template, user has to fill +the amount of every input lines. + +The journal entry form allows lo load, through a wizard, +the template to use and the amounts to fill. + +**Notable features:** + +This module enhance the capability of module account_move_template with following features, + +#. Optional account for negative amount. + + When the Journal entry is created, and credit/debit is negative value, change debit/credit + side and use the opt_account_id + +#. Allow overwrite move line values with overwrite dict. + + Normally, the journal items created by the template will require user input on wizard. + This feature allow passing the overwrite values with a dictionary. + This is particularly useful when the wizard is called by code. + + Sample of dictionary to overwrite move lines:: + + {'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'}, + 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, } + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To create new templates: + +#. Make sure that you have flagged *Show Full Accounting Features* on your + user, and that the user belongs to the *Billing Manager* group. +#. Go to *Invoicing / Configuration / Accounting / Journal Entry Templates* and + define there your templates. You can choose to complete a line using a + defined formula, based on other lines, or by requiring user input. + +To use an existing template: + +#. Go to *Invoicing / Accounting / Actions / Create Entry from Template* +#. Select one of the available templates. +#. Complete the entries according to the template and click on the button *Generate Journal Entry*. + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Agile Business Group +* Aurium Technologies +* Vauxoo +* ForgeFlow +* Akretion + +Contributors +~~~~~~~~~~~~ + +Module Authors +-------------- + +* Davide Corio +* Lorenzo Battistini +* Paolo Chiara +* Franco Tampieri +* Alexis de Lattre (full re-write for v12) + +Module Contributors +------------------- + +* Jalal ZAHID (port to v10) +* Alex Comba (Port to V8) +* Guewen Baconnier +* Raf Ven (port to v11) +* Jordi Ballester (ForgeFlow) +* `Sygel `_: + + * Harald Panten + * Valentin Vinagre + * Manuel Regidor + +* `Ecosoft `_: + + * Kitti U. (Add context overwrite) +* Abraham Anes + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/account-financial-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_move_template/__init__.py b/account_move_template/__init__.py new file mode 100644 index 000000000..9b4296142 --- /dev/null +++ b/account_move_template/__init__.py @@ -0,0 +1,2 @@ +from . import models +from . import wizard diff --git a/account_move_template/__manifest__.py b/account_move_template/__manifest__.py new file mode 100644 index 000000000..7794b8b8a --- /dev/null +++ b/account_move_template/__manifest__.py @@ -0,0 +1,23 @@ +# Copyright 2015-2017 See manifest +# Copyright 2018 Raf Ven +# Copyright 2019 Akretion France (http://www.akretion.com/) +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +{ + "name": "Account Move Template", + "version": "16.0.1.0.0", + "category": "Accounting", + "summary": "Templates for recurring Journal Entries", + "author": "Agile Business Group, Aurium Technologies, Vauxoo, ForgeFlow, " + "Akretion, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/account-financial-tools", + "license": "AGPL-3", + "depends": ["account"], + "data": [ + "security/account_move_template_security.xml", + "security/ir.model.access.csv", + "wizard/account_move_template_run_view.xml", + "view/account_move_template.xml", + ], + "installable": True, +} diff --git a/account_move_template/i18n/account_move_template.pot b/account_move_template/i18n/account_move_template.pot new file mode 100644 index 000000000..e0124c526 --- /dev/null +++ b/account_move_template/i18n/account_move_template.pot @@ -0,0 +1,516 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %(sequence)s " +"(formula: %(code)s). Check that the lines used in the formula really exists " +"and have a lower sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %(sequence)s " +"(formula: %(code)s): the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: %(exception)s\n" +"%(msg)s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%(template)s) is not in the same company " +"(%(company)s) as the current user (%(user_company)s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/am.po b/account_move_template/i18n/am.po new file mode 100644 index 000000000..131d60d5b --- /dev/null +++ b/account_move_template/i18n/am.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/ar.po b/account_move_template/i18n/ar.po new file mode 100644 index 000000000..12abf52d5 --- /dev/null +++ b/account_move_template/i18n/ar.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "إلغاء" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "أنشئ في" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "المعرف" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "الاسم" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "الشريك" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "الشريك" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "النوع" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/bg.po b/account_move_template/i18n/bg.po new file mode 100644 index 000000000..01e055473 --- /dev/null +++ b/account_move_template/i18n/bg.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Отмяна" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Създадено на" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Вид" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/bs.po b/account_move_template/i18n/bs.po new file mode 100644 index 000000000..0ea4b5653 --- /dev/null +++ b/account_move_template/i18n/bs.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Kreirano" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Naziv" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Vrsta" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/ca.po b/account_move_template/i18n/ca.po new file mode 100644 index 000000000..baaf4955f --- /dev/null +++ b/account_move_template/i18n/ca.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creat el" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipus" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/ca_ES.po b/account_move_template/i18n/ca_ES.po new file mode 100644 index 000000000..7f6b048e8 --- /dev/null +++ b/account_move_template/i18n/ca_ES.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/cs.po b/account_move_template/i18n/cs.po new file mode 100644 index 000000000..dd89df180 --- /dev/null +++ b/account_move_template/i18n/cs.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Vytvořeno" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Název" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Společník" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Společník" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Druh" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/da.po b/account_move_template/i18n/da.po new file mode 100644 index 000000000..d9b0924bc --- /dev/null +++ b/account_move_template/i18n/da.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuller" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Oprettet den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "Id" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Type" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/de.po b/account_move_template/i18n/de.po new file mode 100644 index 000000000..d2f9d7588 --- /dev/null +++ b/account_move_template/i18n/de.po @@ -0,0 +1,525 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-22 23:21+0000\n" +"PO-Revision-Date: 2017-12-22 23:21+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +#, fuzzy +msgid "Account" +msgstr "Betrag" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Betrag" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Abbrechen" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Erstellt am" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Zuletzt geändert von" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Zuletzt geändert am" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Name" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Nächster" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Art" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/el_GR.po b/account_move_template/i18n/el_GR.po new file mode 100644 index 000000000..e89c777ca --- /dev/null +++ b/account_move_template/i18n/el_GR.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Άκυρο" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Δημιουργήθηκε στις" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/en_AU.po b/account_move_template/i18n/en_AU.po new file mode 100644 index 000000000..00f8467fe --- /dev/null +++ b/account_move_template/i18n/en_AU.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/" +"teams/23907/en_AU/)\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/en_GB.po b/account_move_template/i18n/en_GB.po new file mode 100644 index 000000000..5276cf124 --- /dev/null +++ b/account_move_template/i18n/en_GB.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Created on" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Name" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Type" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es.po b/account_move_template/i18n/es.po new file mode 100644 index 000000000..19604b332 --- /dev/null +++ b/account_move_template/i18n/es.po @@ -0,0 +1,547 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2023-05-25 12:12+0000\n" +"Last-Translator: pere-aquarian \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" +"\n" +"Validar diccionario para sobreescribir líneas:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (copy)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "1250" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Cuenta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Cuenta Op." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "Activo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Importe" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analítica" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Cuenta analítica" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Etiquetas analíticas" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "Archivar" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "Archivado" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Moneda la compañía" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Calcular fórmula" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Calculado" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Crear asiento mediante plantilla" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Crear asiento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Crédito" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Fecha" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Débito" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "Las líneas de débito y crédito son nulas." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Dirección" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Asiento desde plantilla %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Generar asiento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Imposible calcular la fórmula con secuencia %s (fórmula: %s). Revise que las " +"líneas utilizadas en la fórmula existan y que tengan una secuencia menor que " +"la secuencia de la línea actual." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Imposible calcular la fórmula de la línea con secuencia %s (fórmula: %s): la " +"sintaxis de la fórmula es errónea." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" +"Diccionario inválido: {}\n" +"{}" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "¿Es un abono?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Diario" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Plantilla de asiento" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Línea de plantilla de asiento" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Plantillas de asiento" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Plantilla de asiento" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "Las claves deben ser una línea de secuencia, p.e.: L1, L2, ..." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "L1 * 0.2" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "L1 + L2 + L3" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "L2 - L1" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Etiqueta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Líneas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Plantilla de asiento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nombre" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Siguiente" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Nota" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Impuesto origen" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Sobreescribir Contacto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Sobreescribir" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "El valor de sobreescritura debe de ser un diccionario python válido" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Términos de pago" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Código Python" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" +"El código Python debe de establecerse para una línea calculada con secuencia " +"%d." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Referencia" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "Reestablecer" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Seleccionar plantilla" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "Establecer líneas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Estado" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Línea de distribución de impuestos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Impuestos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Plantilla" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"La plantilla seleccionada (%s) no es de la misma compañía (%s) que el " +"usuario actual (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "¡La secuencia de la línea debe ser única por plantilla!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "¡El nombre ya se ha usado en otra plantilla!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Utilizada para calcular la fecha de vencimiento de un apunte." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Introducción de usuario" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "Los campos válidos a sobreescribir son %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "Cuando el total es negativo, usar esta cuenta en su lugar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Asistente" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" +"Las líneas del asistente para generar asientos a partir de una plantilla" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Asistente para generar un asiento a partir de una plantilla" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Ha añadido una línea en el asistente. Esto no está permitido: debe o bien " +"actualizar la plantilla o modificar el asiento que será generado por este " +"asistente." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Puede hacer referencia a otras líneas usando su número de secuencia. Por " +"ejemplo: L1 para la línea con secuencia 1. Ejemplos:" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Ha eliminado una línea en el asistente. Esto no está permitido: debe o bien " +"actualizar la plantilla o modificar el asiento que será generado por este " +"asistente." diff --git a/account_move_template/i18n/es_AR.po b/account_move_template/i18n/es_AR.po new file mode 100644 index 000000000..2c6497222 --- /dev/null +++ b/account_move_template/i18n/es_AR.po @@ -0,0 +1,547 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2022-06-20 00:05+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/" +"23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" +"\n" +"Diccionario válido para sobreescribir las líneas de plantilla:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (copia)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "1250" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Cuenta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Cuenta Opt." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "Activo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Monto" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analítico" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Cuenta Analítica" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Etiquetas Analíticas" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "Archivo" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "Archivado" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Moneda de la Compañía" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Computar Fórmula" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Computado" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Crear Entrada desde Plantilla" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Crear Asiento Contable" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Crédito" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Fecha" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Débito" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "El Débito y Crédito de todas las líneas es nulo." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Dirección" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Entrada desde plantilla %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Generar Asiento Contable" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Imposible computar la fórmula de la línea con secuencia %s (fórmula: %s). " +"Verifique que las líneas utilizadas en la fórmula realmente existan y tengan " +"una secuencia más baja que la línea actual." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Imposible computar la fórmula de la línea con secuencia %s (fórmula: %s): la " +"sintaxis de la fórmula es incorrecta." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" +"Diccionario inválido: {}\n" +"{}" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "¿Es un reembolso?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Diario" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Plantilla de Asiento Contable" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Plantilla de línea de Asiento Contable" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Plantillas de Asiento Contable" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Plantilla de Apunte Contable" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "Las Llaves deben tener una secuencia única, por ejemplo, L1, L2, ..." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "L1 * 0.2" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "L1 + L2 + L3" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "L2 - L1" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Etiqueta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Líneas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Plantilla de Movimiento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nombre" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Siguiente" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Nota" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Impuesto de Originador" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Sobreescribir Contacto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Sobreescribir" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "El valor de sobreescritura debe ser un dict válido de python" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Contacto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Términos de Pago" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Código Python" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" +"El Código Python debe estar configurado para la línea computada con la " +"secuencia %d." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Referencia" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "Restaurar" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Seleccionar Plantilla" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "Configurar Líneas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Estado" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Línea de Repartición de Impuesto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Impuestos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Plantilla" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"La plantilla seleccionada (%s) no está en la misma compañía (%s) que el " +"usuario actual (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "¡La secuencia de la línea debe ser única por plantilla!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "¡Este nombre ya fue utilizado por otra plantilla!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Usado para computar la fecha de vencimiento del apunte contable." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Entrada de usuario" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "Campos válidos para sobreescribir son %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "Cuando el monto es negativo, utilice esta cuenta en su lugar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Asistente" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "Líneas de Asistente para generar movimiento desde la plantilla" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Asistente para generar movimiento desde plantilla" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Agregó una línea en el asistente. Esto no está permitido: debe actualizar la " +"plantilla o modificar el asiento contable que será generado por este " +"asistente." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Puede referirse a otras líneas usando su número de secuencia ej. L1 " +"para lalínea con secuencia = 1. Ejemplos:" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Borró una línea en el asistente. Esto no está permitido: debe actualizar la " +"plantilla o modificar el asiento contable que será generado por este " +"asistente." diff --git a/account_move_template/i18n/es_CL.po b/account_move_template/i18n/es_CL.po new file mode 100644 index 000000000..74ffc2132 --- /dev/null +++ b/account_move_template/i18n/es_CL.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_CO.po b/account_move_template/i18n/es_CO.po new file mode 100644 index 000000000..82c77cb1c --- /dev/null +++ b/account_move_template/i18n/es_CO.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_CR.po b/account_move_template/i18n/es_CR.po new file mode 100644 index 000000000..e2d763407 --- /dev/null +++ b/account_move_template/i18n/es_CR.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nombre" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_DO.po b/account_move_template/i18n/es_DO.po new file mode 100644 index 000000000..63983bdd7 --- /dev/null +++ b/account_move_template/i18n/es_DO.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_EC.po b/account_move_template/i18n/es_EC.po new file mode 100644 index 000000000..5c91af971 --- /dev/null +++ b/account_move_template/i18n/es_EC.po @@ -0,0 +1,526 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Cristian Salamea , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: Cristian Salamea , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +#, fuzzy +msgid "Account" +msgstr "Monto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Monto" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nombre" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_ES.po b/account_move_template/i18n/es_ES.po new file mode 100644 index 000000000..749abb8c5 --- /dev/null +++ b/account_move_template/i18n/es_ES.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_MX.po b/account_move_template/i18n/es_MX.po new file mode 100644 index 000000000..8cc7d54ae --- /dev/null +++ b/account_move_template/i18n/es_MX.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nombre" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_PE.po b/account_move_template/i18n/es_PE.po new file mode 100644 index 000000000..9636d8a75 --- /dev/null +++ b/account_move_template/i18n/es_PE.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_PY.po b/account_move_template/i18n/es_PY.po new file mode 100644 index 000000000..8f3f47148 --- /dev/null +++ b/account_move_template/i18n/es_PY.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/es_VE.po b/account_move_template/i18n/es_VE.po new file mode 100644 index 000000000..2f0fedb4b --- /dev/null +++ b/account_move_template/i18n/es_VE.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/et.po b/account_move_template/i18n/et.po new file mode 100644 index 000000000..444658c64 --- /dev/null +++ b/account_move_template/i18n/et.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Loobu" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Loodud" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nimi" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tüüp" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/eu.po b/account_move_template/i18n/eu.po new file mode 100644 index 000000000..289419138 --- /dev/null +++ b/account_move_template/i18n/eu.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Created on" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Mota" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/fa.po b/account_move_template/i18n/fa.po new file mode 100644 index 000000000..a41310701 --- /dev/null +++ b/account_move_template/i18n/fa.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "لغو" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "ایجاد شده در" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "شناسه" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "نوع" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/fi.po b/account_move_template/i18n/fi.po new file mode 100644 index 000000000..17df8b853 --- /dev/null +++ b/account_move_template/i18n/fi.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Peruuta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Luotu" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tyyppi" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/fr.po b/account_move_template/i18n/fr.po new file mode 100644 index 000000000..fce7ce702 --- /dev/null +++ b/account_move_template/i18n/fr.po @@ -0,0 +1,549 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2021-04-08 22:47+0000\n" +"Last-Translator: Yves Le Doeuff \n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" +"\n" +"Dictionnaire valide pour écraser les lignes de modèle:\n" +"{'L1': {'partner_id': 1, 'montant': 100, 'nom': 'libellé'},\n" +" 'L2': {'partner_id': 2, 'montant': 200, 'nom': 'libellé 2'}, }\n" +" " + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Compte" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Compte opt." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Montant" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analytique" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Compte analytique" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Etiquettes analytiques" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Société" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Devise de la société" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Calculer" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Calculé" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Créer une écriture à partir d'un modèle" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Créer une écriture" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "Le débit et le crédit de toutes les lignes sont nuls." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Sens" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Ecriture(s) à partir du modèle %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Créer une écriture" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Impossible de calculer la formule de ligne avec la séquence %s (formule: " +"%s). Vérifiez que les lignes utilisées dans la formule existent réellement " +"et qu'elles ont une séquence inférieure à la ligne courante." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Impossible de calculer la formule de ligne avec la séquence %s (formule: " +"%s): la syntaxe de la formule est erronée." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "Est un avoir ?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Modèle d'écriture" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Ligne de modèle d'écriture" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Modèles d'écritures" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Ligne de modèle d'écriture" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "Les clés doivent être une séquence de lignes, i..e, L1, L2, ..." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Libellé" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Dernière Modification le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Lignes" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Modèle d'écriture" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nom" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Suivant" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Remplace le Partenaire" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Ecrase" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partenaire" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Conditions de paiement" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Sélectionner un modèle" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "État" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Ligne de répartition des taxes" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Modèle" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"Le modèle sélectionné (%s) ne fait pas partie de la même société (%s) que " +"l'utilisateur actuel (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "La séquence de la ligne doit être unique par modèle !" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Ce nom est déjà utilisé par un autre modèle !" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Type" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Utilisé pour calculer la date d'échéance de l'élément de journal." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Saisi" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "Les champs valides à écraser sont %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Assistant" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "Lignes de l'assistant pour générer un mouvement à partir d'un modèle" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Assistant pour générer un mouvement à partir d'un modèle" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Vous avez ajouté une ligne dans l'assistant. Ceci n'est pas autorisé : vous " +"devez soit mettre à jour le modèle, soit modifier l'écriture de journal qui " +"sera générée par cet assistant." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Vous pouvez faire référence à d'autres lignes en utilisant leur numéro de " +"séquence, par exemple L1 pour la ligne avec la séquence = 1. " +"Exemples :" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Vous avez supprimé une ligne dans l'assistant. Ceci n'est pas autorisé : " +"vous devez soit mettre à jour le modèle, soit modifier l'écriture de journal " +"qui sera générée par cet assistant." + +#~ msgid "Add an internal note here..." +#~ msgstr "Ajouter une note interne ici…" + +#~ msgid "When amount is negative, use this account in stead" +#~ msgstr "Lorsque le montant est négatif, utilisez ce compte à la place" diff --git a/account_move_template/i18n/fr_CA.po b/account_move_template/i18n/fr_CA.po new file mode 100644 index 000000000..7d2cc940b --- /dev/null +++ b/account_move_template/i18n/fr_CA.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Créé le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "Identifiant" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/fr_CH.po b/account_move_template/i18n/fr_CH.po new file mode 100644 index 000000000..2966c3b14 --- /dev/null +++ b/account_move_template/i18n/fr_CH.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Créé le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/fr_FR.po b/account_move_template/i18n/fr_FR.po new file mode 100644 index 000000000..af6e83fbf --- /dev/null +++ b/account_move_template/i18n/fr_FR.po @@ -0,0 +1,550 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2021-04-10 15:46+0000\n" +"Last-Translator: Yves Le Doeuff \n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" +"\n" +"Dictionnaire valide pour écraser les lignes de modèle:\n" +"{'L1': {'partner_id': 1, 'montant': 100, 'nom': 'libellé'},\n" +" 'L2': {'partner_id': 2, 'montant': 200, 'nom': 'libellé 2'}, }\n" +" " + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Compte" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Compte opt." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Montant" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analytique" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Compte analytique" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Etiquettes analytiques" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Société" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Devise de la société" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Calculer" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Calculé" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Créer une écriture à partir d'un modèle" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Créer une écriture" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "Le débit et le crédit de toutes les lignes sont nuls." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Sens" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Ecriture(s) à partir du modèle %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Créer une écriture" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Impossible de calculer la formule de ligne avec la séquence %s (formule: " +"%s). Vérifiez que les lignes utilisées dans la formule existent réellement " +"et qu'elles ont une séquence inférieure à la ligne courante." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Impossible de calculer la formule de ligne avec la séquence %s (formule: " +"%s): la syntaxe de la formule est erronée." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "Est un avoir ?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Modèle d'écriture" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Ligne de modèle d'écriture" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Modèles d'écritures" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Modèle de ligne écriture" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "Les clés doivent être une séquence de lignes, i..e, L1, L2, ..." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Libellé" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Dernière Modification le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "lignes" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Modèle d'écriture" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nom" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Suivant" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Origine de la taxe" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Partenaire" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Ecrase" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partenaire" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Conditions de paiement" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Sélectionner un modèle" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "État" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Ligne de répartition des taxes" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Modèle" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"Le modèle sélectionné (%s) ne fait pas partie de la même société (%s) que " +"l'utilisateur actuel (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "La séquence de la ligne doit être unique par modèle !" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Ce nom est déjà utilisé par un autre modèle !" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Type" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Utilisé pour calculer la date d'échéance de l'élément de journal." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Saisi" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "Les champs valides à écraser sont %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Assistant" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "Lignes de l'assistant pour générer un mouvement à partir d'un modèle" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Assistant pour générer un mouvement à partir d'un modèle" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Vous avez ajouté une ligne dans l'assistant. Ceci n'est pas autorisé : vous " +"devez soit mettre à jour le modèle, soit modifier l'écriture de journal qui " +"sera générée par cet assistant." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Vous pouvez faire référence à d'autres lignes en utilisant leur numéro de " +"séquence, par exemple L1 pour la ligne avec la séquence = 1. " +"Exemples :" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Vous avez supprimé une ligne dans l'assistant. Ceci n'est pas autorisé : " +"vous devez soit mettre à jour le modèle, soit modifier l'écriture de journal " +"qui sera générée par cet assistant." + +#~ msgid "Add an internal note here..." +#~ msgstr "Ajouter une note interne ici…" + +#~ msgid "When amount is negative, use this account in stead" +#~ msgstr "Lorsque le montant est négatif, utilisez ce compte à la place" diff --git a/account_move_template/i18n/gl.po b/account_move_template/i18n/gl.po new file mode 100644 index 000000000..74c1826cc --- /dev/null +++ b/account_move_template/i18n/gl.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/gl_ES.po b/account_move_template/i18n/gl_ES.po new file mode 100644 index 000000000..a88884de2 --- /dev/null +++ b/account_move_template/i18n/gl_ES.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/gu.po b/account_move_template/i18n/gu.po new file mode 100644 index 000000000..03562e199 --- /dev/null +++ b/account_move_template/i18n/gu.po @@ -0,0 +1,521 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "રદ કરો" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ઓળખ" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/he.po b/account_move_template/i18n/he.po new file mode 100644 index 000000000..f7c08d0f6 --- /dev/null +++ b/account_move_template/i18n/he.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "בטל" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "נוצר ב-" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "מזהה" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "סוג" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/hi.po b/account_move_template/i18n/hi.po new file mode 100644 index 000000000..7b70fb401 --- /dev/null +++ b/account_move_template/i18n/hi.po @@ -0,0 +1,521 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "रद्द" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/hr.po b/account_move_template/i18n/hr.po new file mode 100644 index 000000000..4dce3c605 --- /dev/null +++ b/account_move_template/i18n/hr.po @@ -0,0 +1,551 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-23 01:41+0000\n" +"PO-Revision-Date: 2020-03-05 14:13+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (kopija)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "1250" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Konto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Iznos" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analitika" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Analitički konto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Oznake analitike" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Odustani" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Tvrtka" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Valuta tvrtke" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Formula za izračun" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Izračunato" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Kreiraj temeljnicu iz predloška" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Kreiraj stavku temeljnice" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Potražuje" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Datum" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Duguje" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "Duguje i potražuje svih stavaka je nula." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Smjer" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Prikaži ime" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Stavka iz predloška %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Stvori stavku dnevnika" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Predložak temeljnice" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Stavka predloška temeljnice" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Predlošci temeljnica" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Predložak temeljnice" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "L1 * 0.2" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "L1 + L2 + L3" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "L2 - L1" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Natpis" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena dana" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano dana" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Stavke" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Predložak temeljnice" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Naziv" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Sljedeći" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Napomena" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Izvorni porez" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Nadjačaj Partnera" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Uvjeti plaćanja" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Python Code" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Referenca" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Odaberi predložak" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "Postavi stavke" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Stanje" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Porezi" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Predložak" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "Odabrani predložak (%s) nije u istoj tvrtci (%s) kao i korisnik (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "Sekvenca redka mora biti jedinstvena u predlošku!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Ovaj naziv se već koristi za drugi predložak!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tip" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Koristi se za izračun datuma dospijeća stavke temeljnice." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Ručni unos" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Čarobnjak" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "Stavke za generiranje temeljnice iz predloška" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Čarobnjak za kreiranje temeljnice iz predloška" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#~ msgid "Load" +#~ msgstr "Učitaj" + +#~ msgid "Python code" +#~ msgstr "Python code" + +#~ msgid "Template line ids" +#~ msgstr "IDovi stavaka predloška" + +#~ msgid "Template selected" +#~ msgstr "Predložak odabran" + +#~ msgid "account.document.template" +#~ msgstr "account.document.template" + +#~ msgid "account.document.template.line" +#~ msgstr "account.document.template.line" + +#~ msgid "account.move.template" +#~ msgstr "account.move.template" + +#~ msgid "account.move.template.line" +#~ msgstr "account.move.template.line" + +#~ msgid "wizard.select.move.template" +#~ msgstr "wizard.select.move.template" diff --git a/account_move_template/i18n/hr_HR.po b/account_move_template/i18n/hr_HR.po new file mode 100644 index 000000000..73cebae2c --- /dev/null +++ b/account_move_template/i18n/hr_HR.po @@ -0,0 +1,526 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Kreirano" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/hu.po b/account_move_template/i18n/hu.po new file mode 100644 index 000000000..15349a7c3 --- /dev/null +++ b/account_move_template/i18n/hu.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Mégsem" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Létrehozás dátuma" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Név" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Típus" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/id.po b/account_move_template/i18n/id.po new file mode 100644 index 000000000..0ee186e8f --- /dev/null +++ b/account_move_template/i18n/id.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Batalkan" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Dibuat pada" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nama" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Jenis" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/it.po b/account_move_template/i18n/it.po new file mode 100644 index 000000000..d80a64f92 --- /dev/null +++ b/account_move_template/i18n/it.po @@ -0,0 +1,545 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2023-05-22 12:10+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" +"\n" +"Dizionario valido per sovrascrivere le righe del modello:\n" +"{'L1': {'partner_id': 1, 'importo': 100, 'nom': 'alcune etichette'},\n" +" 'L2': {'partner_id': 2, 'importo': 200, 'nom': 'alcune etichette 2'}, }\n" +" " + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (copia)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "1250" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Conto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Conto opz." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "Attivo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Importo" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analitico" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Conto analitico" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Tag analitici" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "Archivia" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "Archiviato" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annulla" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Azienda" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Valuta aziendale" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Calcola formula" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Calcolato" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Crea Registrazione da Modello" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Crea Registrazione Contabile" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Avere" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Data" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Dare" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "L'addebito e l'accredito di tutte le righe sono nulli." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Direzione" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Record da Modello %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Genera Registrazione Contabile" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Impossibile calcolare la formula della riga con sequenza %s ( Formula: %s). " +"Controlla che le righe usate nella formula esistano veramente e abbiano una " +"sequenza inferiore alla riga corrente." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Impossibile calcolare la formula della riga con sequenza %s (formula: %s): " +"la sintassi della formula è sbagliata." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" +"Dizionario non valido: {}\n" +"{}" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "É un Reso?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Registro" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Modello Registrazione Contabile" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Riga Modello Registrazione Contabile" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Configurazione Registrazioni Contabili" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Modello Oggetto Registro" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "I tasti devono essere in sequenza di riga, i..e, L1, L2, ..." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "L1 * 0.2" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "L1 + L2 + L3" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "L2 - L1" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Etichetta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Righe" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Sposta Modello" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nome" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Prossimo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Nota" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Imposta Originale" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Sostituisci Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Sovrascivi" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "Il valore di sovrascrittura deve essere un dict Python valido" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Termini di pagamento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Codice Python" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" +"Il Codice Python deve essere impostato per la riga calcolata con sequenza %d." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Riferimento" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "Ristabilire" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Seleziona Modello" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Sequenza" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "Imposta Righe" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Stato" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Riga di ripartizione fiscale" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Imposte" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Modello" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"Il modello selezionato (%s) non è nella stessa azienda (%s) dell'utente " +"corrente (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "La sequenza della riga deve essere unica per modello!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Questo nome è già utilizzato da un altro modello!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Utilizzato per calcolare la data di scadenza dell'articolo di registro." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Input Utente" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "I campi validi da sovrascrivere sono %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "Quando l'importo è negativo, usa invece questo account" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Procedura guidata" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "Righe Wizard per generare movimenti dal modello" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Procedura guidata per generare movimenti dal Template" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Hai aggiunto una riga nella procedura guidata. questo non è permesso: è " +"necessario aggiornare il modello o modificare la registrazione contabile che " +"verrà generata da questa procedura guidata." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Puoi fare riferimento ad altre righe usando il loro numero di sequenza es. " +"L1 per riga con sequenza = 1. Esempio:" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Hai eliminato una riga nella procedura guidata. questo non è permesso: è " +"necessario aggiornare il modello o modificare la registrazione contabile che " +"verrà generata da questa procedura guidata." diff --git a/account_move_template/i18n/ja.po b/account_move_template/i18n/ja.po new file mode 100644 index 000000000..81d0bbdd0 --- /dev/null +++ b/account_move_template/i18n/ja.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "キャンセル" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "作成日" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "作成日" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "名前" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "パートナ" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "パートナ" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "タイプ" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/ko.po b/account_move_template/i18n/ko.po new file mode 100644 index 000000000..df29a44b5 --- /dev/null +++ b/account_move_template/i18n/ko.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "취소" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "작성일" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "작성일" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "유형" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/lo.po b/account_move_template/i18n/lo.po new file mode 100644 index 000000000..32f2f8320 --- /dev/null +++ b/account_move_template/i18n/lo.po @@ -0,0 +1,521 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/lt.po b/account_move_template/i18n/lt.po new file mode 100644 index 000000000..81874fbfe --- /dev/null +++ b/account_move_template/i18n/lt.po @@ -0,0 +1,525 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Viktoras Norkus , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: Viktoras Norkus , 2018\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Sukurta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Pavadinimas" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partneris" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partneris" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Statusas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipas" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/lt_LT.po b/account_move_template/i18n/lt_LT.po new file mode 100644 index 000000000..1c48c54b7 --- /dev/null +++ b/account_move_template/i18n/lt_LT.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Sukurta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/lv.po b/account_move_template/i18n/lv.po new file mode 100644 index 000000000..5d7cb5433 --- /dev/null +++ b/account_move_template/i18n/lv.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Atcelt" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Izveidots" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tips" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/mk.po b/account_move_template/i18n/mk.po new file mode 100644 index 000000000..072725fdd --- /dev/null +++ b/account_move_template/i18n/mk.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Откажи" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Креирано на" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Име" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Партнер" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Партнер" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Тип" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/mn.po b/account_move_template/i18n/mn.po new file mode 100644 index 000000000..b3602b7d5 --- /dev/null +++ b/account_move_template/i18n/mn.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Цуцлах" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Үүсгэсэн" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Нэр" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Харилцагч" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Харилцагч" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Төрөл" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/nb.po b/account_move_template/i18n/nb.po new file mode 100644 index 000000000..26bbef3de --- /dev/null +++ b/account_move_template/i18n/nb.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Opprettet den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Navn" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Type" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/nb_NO.po b/account_move_template/i18n/nb_NO.po new file mode 100644 index 000000000..66e2d6928 --- /dev/null +++ b/account_move_template/i18n/nb_NO.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Lukk" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Laget den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/nl.po b/account_move_template/i18n/nl.po new file mode 100644 index 000000000..686085721 --- /dev/null +++ b/account_move_template/i18n/nl.po @@ -0,0 +1,541 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Frank Schellenberg , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2021-04-23 21:47+0000\n" +"Last-Translator: Bosd \n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +#, fuzzy +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (Kopie)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "1250" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Rekening" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +#, fuzzy +msgid "Account Opt." +msgstr "Rekening" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Bedrag" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "kostenplaats" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Kostenplaats" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Kostenplaatslabels" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Bedrijfsvaluta" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Bereken formule" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "berekende" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Maak een mutatie vanaf sjabloon" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Maak boekings mutatie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Credit" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Datum" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Debet" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, fuzzy, python-format +msgid "Debit and credit of all lines are null." +msgstr "Debet en credit van alle regels zijn nul." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Richting" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Mutatie vanuit sjabloon %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Genereer boeking" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "is een credit?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Dagboek" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Boekkingssjabloon" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Boekingssjabloon regel" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +#, fuzzy +msgid "Journal Entry Templates" +msgstr "Boekingssjabloon" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "boeking sjabloon" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "L1 * 0.2" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "L1 + L2 + L3" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "L2 - L1" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Naam" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Regels" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Mutatie sjabloon" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Naam" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Volgende" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Notitie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Herkomst van de BTW" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Relatie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Overschrijven" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Relatie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Betalingsconditie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Python Code" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, fuzzy, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "Python Code moet zijn opgegeven voor berekende regel met volgorde %d." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Referentie" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Selecteer sjabloon" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Volgorde" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "zet regels" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Status" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Belastingscorrectie regel" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Belastingen" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Sjabloon" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"Het geselecteerde sjabloon (%s) bevind zich niet binnen hetzelfde bedrijf " +"(%s) als de huidige gebruiker (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "De volgorde van de regel moet uniek zijn binnen het sjabloon!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Deze naam is reeds in gebruik door een ander sjabloon!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Type" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Gebruikt om de vervaldatum van de boeking te berekenen," + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Gebruikersinvoer" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Gids" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#~ msgid "Add an internal note here..." +#~ msgstr "Voeg interne notitie toe..." + +#~ msgid "When amount is negative, use this account in stead" +#~ msgstr "Wanneer een bedrag negatief is, gebruik dit inplaats" diff --git a/account_move_template/i18n/nl_BE.po b/account_move_template/i18n/nl_BE.po new file mode 100644 index 000000000..172b5fe4d --- /dev/null +++ b/account_move_template/i18n/nl_BE.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Gemaakt op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Naam" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Relatie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Relatie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Type" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/nl_NL.po b/account_move_template/i18n/nl_NL.po new file mode 100644 index 000000000..b71bc8b88 --- /dev/null +++ b/account_move_template/i18n/nl_NL.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# Frank Schellenberg , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-25 11:47+0000\n" +"PO-Revision-Date: 2018-01-25 11:47+0000\n" +"Last-Translator: Frank Schellenberg , 2018\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Aangemaakt op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Naam" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Relatie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Relatie" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Status" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/pl.po b/account_move_template/i18n/pl.po new file mode 100644 index 000000000..00188bfe9 --- /dev/null +++ b/account_move_template/i18n/pl.po @@ -0,0 +1,525 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Utworzono" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Typ" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/pt.po b/account_move_template/i18n/pt.po new file mode 100644 index 000000000..39a05f051 --- /dev/null +++ b/account_move_template/i18n/pt.po @@ -0,0 +1,541 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Pedro Castro Silva , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2021-07-02 22:49+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (cópia)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "1250" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Conta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Conta Opc." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "Ativo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Montante" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analítica" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Conta Analítica" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Etiquetas Analíticas" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "Arquivar" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "Arquivado" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Moeda da Empresa" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Calcular Fórmula" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Calculado" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Criar Movimento a partir do Modelo" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Criar Movimento de Diário" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Crédito" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Data" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Débito" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "Débito e Crédito de todas as linhas são nulos." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Direção" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nome a Exibir" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Movimento a partir do modelo %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Gerar Movimento de Diário" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Impossível calcular a fórmula da linha com sequência %s (formula: %s). " +"Verifique que as linhas usadas na formula existem de facto e têm sequência " +"mais baixa que a linha atual." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Impossível calculara a f´rmula da linha com a sequência%s (formula: %s): a " +"sintaxe da fórmula está errada." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" +"Dicionário inválido: {}\n" +"{}" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "É um Reembolso?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Diário" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Modelo de Movimento de Diário" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Modelo de Linha de Movimento de Diário" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Modelos de Movimentos de Diário" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Modelo de Item de Diário" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "As chaves devem ser sequência de linhas, i.e., L1, L2, ..." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "L1 * 0.2" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "L1 + L2 + L3" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "L2 - L1" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Rótulo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última Actualização por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última Actualização em" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Linhas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Modelo de Movimento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nome" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Próximo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Nota" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Origem dos Impostos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Substituir Parceiro" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Sobrescrever" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "O valor a sobrescrever deve ser um dicionário python válido" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Parceiro" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Termos de Pagamento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Código Python" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" +"Código Python deve ser definido para cálculo de linhas com sequência %d." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Referência" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "Restaurar" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Selecionar Modelo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "Definir Linhas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Estado" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Linha de Repartição de Impostos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Impostos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Modelos" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"O modelo selecionado (%s) não está na mesma empresa (%s) do utilizador atual " +"(%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "A sequência da linha deve ser única para este modelo!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Este nome já está a ser usado noutro modelo!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Usado para calcular a data de vencimento o item de diário." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Entrada do utilizador" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "O campos válidos para sobrescrever são %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "Quando valor é negativo, utilize antes esta conta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Assistente" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "Linhas do Assistente para gerar movimentos a partir do modelo" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Assistente para gerar movimentos a partir do modelo" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Adicionou uma linha no assistente. Não é permitido: deve em alternativa " +"atualizar o modelo ou modificar ao movimento de diário que será gerado por " +"este assistente." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Pode referenciar outras linhas usando a sua sequência numérica p.ex. L1 para linha com sequência = 1. Exemplos:" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Apagou uma linha no assistente. Não é permitido: deve em alternativa " +"atualizar o modelo ou modificar o movimento de diário que será gerado pelo " +"assistente." diff --git a/account_move_template/i18n/pt_BR.po b/account_move_template/i18n/pt_BR.po new file mode 100644 index 000000000..349a375f7 --- /dev/null +++ b/account_move_template/i18n/pt_BR.po @@ -0,0 +1,541 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2022-09-22 16:07+0000\n" +"Last-Translator: Douglas Custódio \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Conta" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Conta Opc." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "Ativo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Valor" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Analítico" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Conta Analítica" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Etiquetas Analíticas" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "Arquivar" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "Arquivado" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Moeda da Empresa" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Fórmula do Cálculo" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Calculado" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Criar Lançamento de Diário por Modelo" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Criar Lançamento de Diário" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Crédito" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Data" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Débito" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "Débito e crédito de todas as linhas são nulo." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Direção" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Lançamento do modelo %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Gerar Lançamento de Diário" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "Identificação" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Impossível calcular a fórmula da linha da sequência %s (fórmula: %s). " +"Verifique as linhas utilizadas na fórmula realmente existem e possuem uma " +"sequência menor do que a linha atual." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Impossível calcular a fórmula da linha da sequência %s (fórmula: %s): a " +"sintaxe da fórmula está incorreta." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" +"Dicionário inválido: {}\n" +"{}" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "É um reembolso?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Diário" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Modelo de Lançamento de Diário" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Modelo de Linha de Lançamento de Diário" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Modelos de Lançamento de Diário" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Modelo de Item de Diário" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "Chaves devem ser sequencia da linha, ex, L1, L2, ..." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Rótulo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Linhas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Modelo de Lançamento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nome" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Próximo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Nota" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Imposto de Origem" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "Substituir Parceiro" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Sobrescrever" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "O Valor sobrescrito deve ser um dict python válido" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Parceiro" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Condição de Pagamento" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Código Python" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" +"O Código Python deve ser definido para linha calculada com sequência %d." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Referência" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "Restaurar" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Selecionar Modelo" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "Definir Linhas" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "Estado" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "Linha de Repartição de Impostos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Impostos" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Modelo" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"O modelo selecionado (%s) não é da mesma empresa (%s) como o atual usuário " +"(%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "A sequência da linha deve ser único por modelo!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Esse nome já é usado por outro modelo!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Usado para calcular a data de vencimento do item de diário." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Entrada do usuário" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "Os campos válidos para sobrescrever são %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "Quando o valor é negativo, usar esta conta em seu lugar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +#, fuzzy +msgid "Wizard" +msgstr "Wizard" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "Linhas do Wizard para gerar lançamento pelo modelo" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "Wizard para gerar lançamento pelo modelo" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Você adicionou uma linha no wizard. Isto não é permitido: você deve " +"atualizar o modelo ou modificar o lançamento de diário que será gerado por " +"este wizard." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Você pode referenciar a outras linhas usando seus números de sequência ex. " +"L1 para linha com a sequência = 1. Exemplos:" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Você deletou uma linha no wizard. Isto não é permitido: você deve atualizar " +"o modelo ou modificar o lançamento de diário que será gerado por este wizard." diff --git a/account_move_template/i18n/pt_PT.po b/account_move_template/i18n/pt_PT.po new file mode 100644 index 000000000..9a5d5c59d --- /dev/null +++ b/account_move_template/i18n/pt_PT.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +#, fuzzy +msgid "Account" +msgstr "Valor" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Valor" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Criado em" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Modificado pela última vez em" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nome" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipo" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/ro.po b/account_move_template/i18n/ro.po new file mode 100644 index 000000000..0fd51ba6b --- /dev/null +++ b/account_move_template/i18n/ro.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Anuleaza" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Creat la" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Nume" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partener" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partener" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/ru.po b/account_move_template/i18n/ru.po new file mode 100644 index 000000000..e56b73b3c --- /dev/null +++ b/account_move_template/i18n/ru.po @@ -0,0 +1,525 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Отменена" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Создан" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Создан" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Название" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Контрагент" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Контрагент" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/sk.po b/account_move_template/i18n/sk.po new file mode 100644 index 000000000..4a4502418 --- /dev/null +++ b/account_move_template/i18n/sk.po @@ -0,0 +1,522 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Zrušiť" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Vytvorené" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravil" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Naposledy upravené" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Typ" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/sl.po b/account_move_template/i18n/sl.po new file mode 100644 index 000000000..251b85b69 --- /dev/null +++ b/account_move_template/i18n/sl.po @@ -0,0 +1,526 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2023-03-31 21:24+0000\n" +"Last-Translator: Matjaz Mozetic \n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +#, fuzzy +msgid "Account" +msgstr "Znesek" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Znesek" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Preklic" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Ustvarjeno" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Naziv" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tip" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/sr.po b/account_move_template/i18n/sr.po new file mode 100644 index 000000000..bc5a2efec --- /dev/null +++ b/account_move_template/i18n/sr.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Kreiran" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tip" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/sr@latin.po b/account_move_template/i18n/sr@latin.po new file mode 100644 index 000000000..426503a25 --- /dev/null +++ b/account_move_template/i18n/sr@latin.po @@ -0,0 +1,525 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Kreiran" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tip" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/sv.po b/account_move_template/i18n/sv.po new file mode 100644 index 000000000..a14466d96 --- /dev/null +++ b/account_move_template/i18n/sv.po @@ -0,0 +1,538 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2022-03-02 15:17+0000\n" +"Last-Translator: Simon S \n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (kopia)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "1250" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "Konto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "Alternativt konto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "Aktiv" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Belopp" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "Objekt" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "Objektkonto" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "Objektetiketter" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "Arkivera" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "Arkiverad" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "Bolag" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "Bolagets valuta" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "Beräkna formel" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "Beräknad" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "Skapa verifikat från mall" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "Skapa verifikat" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "Kredit" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "Datum" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "Debet" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "Debet och kredit på alla rader är null." + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "Riktning" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "Verifikat från mall %s" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "Generera verifikat" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" +"Det är omöjligt att beräkna formeln för raden med sekvens %s (formel: %s). " +"Kontrollera att raderna som används i formeln verkligen finns och att de har " +"en lägre sekvens än den aktuella raden." + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" +"Det är omöjligt att beräkna formeln för raden med sekvens %s (formula: %s): " +"formelns syntax är fel." + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "Är en återbetalning?" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "Journal" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "Verifikatmall" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "Verifikatmallsrad" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "Verifikatmallar" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "Verifikatradsmall" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "L1 * 0,2" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "L1 + L2 + L3" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "L2 - L1" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "Etikett" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Senast ändrad den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad den" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "Rader" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "Verifikatmall" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Namn" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "Nästa" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "Anteckning" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "Ursprungsmoms" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Företag" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "Skriv över" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Kontakt" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "Betalningsvillkor" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Pythonkod" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "Referens" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "Återställ" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "Välj mall" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "Skapa rader" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "Moms" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "Mall" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" +"Den valda mallen (%s) tillhör inte samma bolag (%s) som den aktuella " +"användaren (%s)." + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "Radens sekvens måste vara unik för varje mall!" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "Det här namnet används redan av en annan mall!" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Typ" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "Används för att beräkna journalradens förfallodag." + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "Inmatning av användaren" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "Giltiga fält att skriva över är %s" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "När beloppet är negativt, använd det här kontot istället" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "Guide" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Du lade till en rad i guiden. Detta är inte tillåtet: du måste antingen " +"uppdatera mallen eller ändra verifikatet som kommer att genereras av denna " +"guide." + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"Du kan referera till andra rader genom att använda deras sekvensnummer, " +"t.ex. L1 för raden med sekvens = 1. Exempel:" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" +"Du tog bort en rad i guiden. Detta är inte tillåtet: du måste antingen " +"uppdatera mallen eller ändra verifikatet som kommer att genereras av denna " +"guide." diff --git a/account_move_template/i18n/th.po b/account_move_template/i18n/th.po new file mode 100644 index 000000000..7352b11e4 --- /dev/null +++ b/account_move_template/i18n/th.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "สร้างเมื่อ" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "รหัส" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "ชื่อ" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "พาร์ทเนอร์" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "พาร์ทเนอร์" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "ชนิด" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/tr.po b/account_move_template/i18n/tr.po new file mode 100644 index 000000000..ad83f4059 --- /dev/null +++ b/account_move_template/i18n/tr.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Vazgeç" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Oluşturuldu" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Adı" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Cari" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Cari" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tipi" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/tr_TR.po b/account_move_template/i18n/tr_TR.po new file mode 100644 index 000000000..9975335cd --- /dev/null +++ b/account_move_template/i18n/tr_TR.po @@ -0,0 +1,525 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: Ediz Duman , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +#, fuzzy +msgid "Account" +msgstr "Tutar" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "Tutar" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "İptal et" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Oluşturulma tarihi" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "Kimlik" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "Adı" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Tip" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/uk.po b/account_move_template/i18n/uk.po new file mode 100644 index 000000000..c8cc08f67 --- /dev/null +++ b/account_move_template/i18n/uk.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Скасувати" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Дата створення" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Тип" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/vi.po b/account_move_template/i18n/vi.po new file mode 100644 index 000000000..61db105bf --- /dev/null +++ b/account_move_template/i18n/vi.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Được tạo vào" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "Đối tác" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "Đối tác" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "Loại" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/vi_VN.po b/account_move_template/i18n/vi_VN.po new file mode 100644 index 000000000..af427fa1e --- /dev/null +++ b/account_move_template/i18n/vi_VN.po @@ -0,0 +1,523 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "Hủy" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "Tạo vào" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/zh_CN.po b/account_move_template/i18n/zh_CN.po new file mode 100644 index 000000000..78b36d3e6 --- /dev/null +++ b/account_move_template/i18n/zh_CN.po @@ -0,0 +1,525 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2020-08-11 10:59+0000\n" +"Last-Translator: Dong \n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "%s (副本)" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "会计科目" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "金额" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "辅助核算" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "辅助核算项" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "辅助核算标签" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "取消" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "核算组织" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "本位币" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "计算公式" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "自动计算" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "从模式凭证引入" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Create Journal Entry" +msgstr "创建凭证" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "创建人" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "贷" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "记账日期" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "借" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "分录的借方和贷方金额为空。" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "方向" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "从模式凭证 %s 引入" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "生成凭证" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "ID" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "单据类型" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "模式凭证" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "模式凭证分录" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "模式凭证" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "分录模板" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "摘要" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "最近修改时间" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "最近更新人" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "最近更新日期" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "会计分录" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "模式凭证" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "名称" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "下一步" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "备注" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "税项" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +msgid "Override Partner" +msgstr "往来单位" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "往来单位" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "收付款条件" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "Python 代码" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "单据编号" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "选择模式凭证" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "行序" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "录入分录" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "状态" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "税金" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "模式凭证" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "类型" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "用户输入" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "向导" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" +"你可以使用分录的行序来引用其他分录,例如L1表示行序为1的分录。引用示" +"例:" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/i18n/zh_TW.po b/account_move_template/i18n/zh_TW.po new file mode 100644 index 000000000..e62872e65 --- /dev/null +++ b/account_move_template/i18n/zh_TW.po @@ -0,0 +1,524 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_run__overwrite +msgid "" +"\n" +"Valid dictionary to overwrite template lines:\n" +"{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},\n" +" 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }\n" +" " +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "1250" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__account_id +msgid "Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__opt_account_id +msgid "Account Opt." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__active +msgid "Active" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__amount +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Amount" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Analytic" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_account_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_account_id +msgid "Analytic Account" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__analytic_tag_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__analytic_tag_ids +msgid "Analytic Tags" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Archive" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Archived" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Cancel" +msgstr "刪除" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__company_id +msgid "Company" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__company_currency_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__company_currency_id +msgid "Company Currency" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Compute Formula" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__computed +msgid "Computed" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_run_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_run_menu +msgid "Create Entry from Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#, fuzzy +msgid "Create Journal Entry" +msgstr "建立於" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__create_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__create_date +msgid "Created on" +msgstr "建立於" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__cr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__cr +msgid "Credit" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__date +msgid "Date" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__move_line_type__dr +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line_run__move_line_type__dr +msgid "Debit" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Debit and credit of all lines are null." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__move_line_type +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__move_line_type +msgid "Direction" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__display_name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Entry from template %s" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Generate Journal Entry" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__id +msgid "ID" +msgstr "編號" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s). " +"Check that the lines used in the formula really exists and have a lower " +"sequence than the current line." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"Impossible to compute the formula of line with sequence %s (formula: %s): " +"the syntax of the formula is wrong." +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"Invalid dictionary: {}\n" +"{}" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__is_refund +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__is_refund +msgid "Is a refund?" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__journal_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__journal_id +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_search +msgid "Journal Entry Template" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Journal Entry Template Line" +msgstr "" + +#. module: account_move_template +#: model:ir.actions.act_window,name:account_move_template.account_move_template_action +#: model:ir.ui.menu,name:account_move_template.account_move_template_menu +msgid "Journal Entry Templates" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line +msgid "Journal Item Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Keys must be line sequence, i..e, L1, L2, ..." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 * 0.2" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L1 + L2 + L3" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "L2 - L1" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__name +msgid "Label" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run____last_update +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_uid +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__write_date +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__line_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__line_ids +msgid "Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__template_id +msgid "Move Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__name +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__name +msgid "Name" +msgstr "名稱" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_run_form +msgid "Next" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__note +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__note +msgid "Note" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_line_id +msgid "Originator Tax" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__partner_id +#, fuzzy +msgid "Override Partner" +msgstr "夥伴" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__overwrite +msgid "Overwrite" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Overwrite value must be a valid python dict" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__partner_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__partner_id +msgid "Partner" +msgstr "夥伴" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__payment_term_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__payment_term_id +msgid "Payment Terms" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__python_code +msgid "Python Code" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "Python Code must be set for computed line with sequence %d." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template__ref +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__ref +msgid "Reference" +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_form +msgid "Restore" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__select_template +msgid "Select Template" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__sequence +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__sequence +msgid "Sequence" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_run__state__set_lines +msgid "Set Lines" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__state +msgid "State" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_repartition_line_id +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_repartition_line_id +msgid "Tax Repartition Line" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__tax_ids +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__tax_ids +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "Taxes" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_run__template_id +msgid "Template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "" +"The selected template (%s) is not in the same company (%s) as the current " +"user (%s)." +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_line_sequence_template_uniq +msgid "The sequence of the line must be unique per template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.constraint,message:account_move_template.constraint_account_move_template_name_company_unique +msgid "This name is already used by another template!" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line__type +msgid "Type" +msgstr "類型" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__payment_term_id +msgid "Used to compute the due date of the journal item." +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields.selection,name:account_move_template.selection__account_move_template_line__type__input +msgid "User input" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/wizard/account_move_template_run.py:0 +#, python-format +msgid "Valid fields to overwrite are %s" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,help:account_move_template.field_account_move_template_line__opt_account_id +msgid "When amount is negative, use this account instead" +msgstr "" + +#. module: account_move_template +#: model:ir.model.fields,field_description:account_move_template.field_account_move_template_line_run__wizard_id +msgid "Wizard" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_line_run +msgid "Wizard Lines to generate move from template" +msgstr "" + +#. module: account_move_template +#: model:ir.model,name:account_move_template.model_account_move_template_run +msgid "Wizard to generate move from template" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You added a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" + +#. module: account_move_template +#: model_terms:ir.ui.view,arch_db:account_move_template.account_move_template_line_form +msgid "" +"You can refer to other lines using their sequence number e.g. L1 for " +"line with sequence = 1. Examples:" +msgstr "" + +#. module: account_move_template +#: code:addons/account_move_template/models/account_move_template.py:0 +#, python-format +msgid "" +"You deleted a line in the wizard. This is not allowed: you should either " +"update the template or modify the journal entry that will be generated by " +"this wizard." +msgstr "" diff --git a/account_move_template/models/__init__.py b/account_move_template/models/__init__.py new file mode 100644 index 000000000..7de889b27 --- /dev/null +++ b/account_move_template/models/__init__.py @@ -0,0 +1 @@ +from . import account_move_template diff --git a/account_move_template/models/account_move_template.py b/account_move_template/models/account_move_template.py new file mode 100644 index 000000000..8f2e6962a --- /dev/null +++ b/account_move_template/models/account_move_template.py @@ -0,0 +1,228 @@ +# Copyright 2015-2019 See manifest +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +from odoo import _, api, fields, models +from odoo.exceptions import UserError, ValidationError +from odoo.tools.safe_eval import safe_eval + + +class AccountMoveTemplate(models.Model): + _name = "account.move.template" + _description = "Journal Entry Template" + _check_company_auto = True + + name = fields.Char(required=True) + company_id = fields.Many2one( + "res.company", + string="Company", + required=True, + ondelete="cascade", + default=lambda self: self.env.company, + ) + journal_id = fields.Many2one( + "account.journal", + string="Journal", + required=True, + check_company=True, + domain="[('company_id', '=', company_id)]", + ) + ref = fields.Char(string="Reference", copy=False) + line_ids = fields.One2many( + "account.move.template.line", inverse_name="template_id", string="Lines" + ) + active = fields.Boolean(default=True) + + _sql_constraints = [ + ( + "name_company_unique", + "unique(name, company_id)", + "This name is already used by another template!", + ) + ] + + def copy(self, default=None): + self.ensure_one() + default = dict(default or {}, name=_("%s (copy)") % self.name) + return super().copy(default) + + def eval_computed_line(self, line, sequence2amount): + safe_eval_dict = {} + for seq, amount in sequence2amount.items(): + safe_eval_dict["L%d" % seq] = amount + try: + val = safe_eval(line.python_code, safe_eval_dict) + sequence2amount[line.sequence] = val + except ValueError as err: + raise UserError( + _( + "Impossible to compute the formula of line with sequence %(sequence)s " + "(formula: %(code)s). Check that the lines used in the formula " + "really exists and have a lower sequence than the current " + "line.", + sequence=line.sequence, + code=line.python_code, + ) + ) from err + except SyntaxError as err: + raise UserError( + _( + "Impossible to compute the formula of line with sequence %(sequence)s " + "(formula: %(code)s): the syntax of the formula is wrong.", + sequence=line.sequence, + code=line.python_code, + ) + ) from err + + def compute_lines(self, sequence2amount): + company_cur = self.company_id.currency_id + input_sequence2amount = sequence2amount.copy() + for line in self.line_ids.filtered(lambda x: x.type == "input"): + if line.sequence not in sequence2amount: + raise UserError( + _( + "You deleted a line in the wizard. This is not allowed: " + "you should either update the template or modify the " + "journal entry that will be generated by this wizard." + ) + ) + input_sequence2amount.pop(line.sequence) + if input_sequence2amount: + raise UserError( + _( + "You added a line in the wizard. This is not allowed: " + "you should either update the template or modify " + "the journal entry that will be generated by this wizard." + ) + ) + for line in self.line_ids.filtered(lambda x: x.type == "computed"): + self.eval_computed_line(line, sequence2amount) + sequence2amount[line.sequence] = company_cur.round( + sequence2amount[line.sequence] + ) + return sequence2amount + + def generate_journal_entry(self): + """Called by the button on the form view""" + self.ensure_one() + wiz = self.env["account.move.template.run"].create({"template_id": self.id}) + action = wiz.load_lines() + return action + + +class AccountMoveTemplateLine(models.Model): + _name = "account.move.template.line" + _description = "Journal Item Template" + _order = "sequence, id" + _inherit = "analytic.mixin" + _check_company_auto = True + + template_id = fields.Many2one( + "account.move.template", string="Move Template", ondelete="cascade" + ) + name = fields.Char(string="Label") + sequence = fields.Integer(required=True) + account_id = fields.Many2one( + "account.account", + string="Account", + required=True, + domain="[('company_id', '=', company_id), ('deprecated', '=', False)]", + check_company=True, + ) + partner_id = fields.Many2one( + "res.partner", + string="Partner", + domain=["|", ("parent_id", "=", False), ("is_company", "=", True)], + ) + tax_ids = fields.Many2many("account.tax", string="Taxes", check_company=True) + tax_line_id = fields.Many2one( + "account.tax", string="Originator Tax", ondelete="restrict", check_company=True + ) + company_id = fields.Many2one(related="template_id.company_id", store=True) + company_currency_id = fields.Many2one( + related="template_id.company_id.currency_id", + string="Company Currency", + store=True, + ) + note = fields.Char() + type = fields.Selection( + [ + ("input", "User input"), + ("computed", "Computed"), + ], + required=True, + default="input", + ) + python_code = fields.Text(string="Formula") + move_line_type = fields.Selection( + [("cr", "Credit"), ("dr", "Debit")], required=True, string="Direction" + ) + payment_term_id = fields.Many2one( + "account.payment.term", + string="Payment Terms", + help="Used to compute the due date of the journal item.", + ) + is_refund = fields.Boolean( + default=False, + string="Is a refund?", + ) + tax_repartition_line_id = fields.Many2one( + "account.tax.repartition.line", + string="Tax Repartition Line", + compute="_compute_tax_repartition_line_id", + store=True, + ) + opt_account_id = fields.Many2one( + "account.account", + string="Account Opt.", + domain="[('company_id', '=', company_id), ('deprecated', '=', False)]", + check_company=True, + help="When amount is negative, use this account instead", + ) + + @api.depends("is_refund", "account_id", "tax_line_id") + def _compute_tax_repartition_line_id(self): + for record in self.filtered(lambda x: x.account_id and x.tax_line_id): + tax_repartition = "refund_tax_id" if record.is_refund else "invoice_tax_id" + record.tax_repartition_line_id = self.env[ + "account.tax.repartition.line" + ].search( + [ + ("account_id", "=", record.account_id.id), + (tax_repartition, "=", record.tax_line_id.id), + ], + limit=1, + ) + + @api.depends("account_id", "partner_id") + def _compute_analytic_distribution(self): + for line in self: + distribution = self.env[ + "account.analytic.distribution.model" + ]._get_distribution( + { + "partner_id": line.partner_id.id, + "partner_category_id": line.partner_id.category_id.ids, + "product_id": False, + "product_categ_id": False, + "account_prefix": line.account_id.code, + "company_id": line.template_id.company_id.id, + } + ) + line.analytic_distribution = distribution or line.analytic_distribution + + _sql_constraints = [ + ( + "sequence_template_uniq", + "unique(template_id, sequence)", + "The sequence of the line must be unique per template!", + ) + ] + + @api.constrains("type", "python_code") + def check_python_code(self): + for line in self: + if line.type == "computed" and not line.python_code: + raise ValidationError( + _("Python Code must be set for computed line with sequence %d.") + % line.sequence + ) diff --git a/account_move_template/readme/CONTRIBUTORS.rst b/account_move_template/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..6d9a36771 --- /dev/null +++ b/account_move_template/readme/CONTRIBUTORS.rst @@ -0,0 +1,27 @@ +Module Authors +-------------- + +* Davide Corio +* Lorenzo Battistini +* Paolo Chiara +* Franco Tampieri +* Alexis de Lattre (full re-write for v12) + +Module Contributors +------------------- + +* Jalal ZAHID (port to v10) +* Alex Comba (Port to V8) +* Guewen Baconnier +* Raf Ven (port to v11) +* Jordi Ballester (ForgeFlow) +* `Sygel `_: + + * Harald Panten + * Valentin Vinagre + * Manuel Regidor + +* `Ecosoft `_: + + * Kitti U. (Add context overwrite) +* Abraham Anes diff --git a/account_move_template/readme/DESCRIPTION.rst b/account_move_template/readme/DESCRIPTION.rst new file mode 100644 index 000000000..d43635a01 --- /dev/null +++ b/account_move_template/readme/DESCRIPTION.rst @@ -0,0 +1,29 @@ +The user can configure journal entries templates, useful for recurring entries. +The amount of each template line can be computed (through python code) +or kept as user input. + +If user input, when using the template, user has to fill +the amount of every input lines. + +The journal entry form allows lo load, through a wizard, +the template to use and the amounts to fill. + +**Notable features:** + +This module enhance the capability of module account_move_template with following features, + +#. Optional account for negative amount. + + When the Journal entry is created, and credit/debit is negative value, change debit/credit + side and use the opt_account_id + +#. Allow overwrite move line values with overwrite dict. + + Normally, the journal items created by the template will require user input on wizard. + This feature allow passing the overwrite values with a dictionary. + This is particularly useful when the wizard is called by code. + + Sample of dictionary to overwrite move lines:: + + {'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'}, + 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, } diff --git a/account_move_template/readme/USAGE.rst b/account_move_template/readme/USAGE.rst new file mode 100644 index 000000000..1ea7d7266 --- /dev/null +++ b/account_move_template/readme/USAGE.rst @@ -0,0 +1,13 @@ +To create new templates: + +#. Make sure that you have flagged *Show Full Accounting Features* on your + user, and that the user belongs to the *Billing Manager* group. +#. Go to *Invoicing / Configuration / Accounting / Journal Entry Templates* and + define there your templates. You can choose to complete a line using a + defined formula, based on other lines, or by requiring user input. + +To use an existing template: + +#. Go to *Invoicing / Accounting / Actions / Create Entry from Template* +#. Select one of the available templates. +#. Complete the entries according to the template and click on the button *Generate Journal Entry*. diff --git a/account_move_template/security/account_move_template_security.xml b/account_move_template/security/account_move_template_security.xml new file mode 100644 index 000000000..96c7f7db7 --- /dev/null +++ b/account_move_template/security/account_move_template_security.xml @@ -0,0 +1,10 @@ + + + + Move Template multi-company rule + + ['|',('company_id','=',False),('company_id','in',company_ids)] + + diff --git a/account_move_template/security/ir.model.access.csv b/account_move_template/security/ir.model.access.csv new file mode 100644 index 000000000..e9e043c34 --- /dev/null +++ b/account_move_template/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_move_template_user,Full access on account.move.template to accountant grp,model_account_move_template,account.group_account_user,1,1,1,1 +access_account_move_template_line_user,Full access on account.move.template.line to accountant grp,model_account_move_template_line,account.group_account_user,1,1,1,1 +access_account_move_template_run_user,Full access on account.move.template.run to accountant grp,model_account_move_template_run,account.group_account_user,1,1,1,1 +access_account_move_template_line_run_user,Full access on account.move.template.line.run to accountant grp,model_account_move_template_line_run,account.group_account_user,1,1,1,1 diff --git a/account_move_template/static/description/icon.png b/account_move_template/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/account_move_template/static/description/icon.png differ diff --git a/account_move_template/static/description/index.html b/account_move_template/static/description/index.html new file mode 100644 index 000000000..6aacff6c2 --- /dev/null +++ b/account_move_template/static/description/index.html @@ -0,0 +1,503 @@ + + + + + + +Account Move Template + + + +
+

Account Move Template

+ + +

Beta License: AGPL-3 OCA/account-financial-tools Translate me on Weblate Try me on Runboat

+

The user can configure journal entries templates, useful for recurring entries. +The amount of each template line can be computed (through python code) +or kept as user input.

+

If user input, when using the template, user has to fill +the amount of every input lines.

+

The journal entry form allows lo load, through a wizard, +the template to use and the amounts to fill.

+

Notable features:

+

This module enhance the capability of module account_move_template with following features,

+
    +
  1. Optional account for negative amount.

    +
    +

    When the Journal entry is created, and credit/debit is negative value, change debit/credit +side and use the opt_account_id

    +
    +
  2. +
  3. Allow overwrite move line values with overwrite dict.

    +
    +

    Normally, the journal items created by the template will require user input on wizard. +This feature allow passing the overwrite values with a dictionary. +This is particularly useful when the wizard is called by code.

    +

    Sample of dictionary to overwrite move lines:

    +
    +{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'},
    + 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, }
    +
    +
    +
  4. +
+

Table of contents

+ +
+

Usage

+

To create new templates:

+
    +
  1. Make sure that you have flagged Show Full Accounting Features on your +user, and that the user belongs to the Billing Manager group.
  2. +
  3. Go to Invoicing / Configuration / Accounting / Journal Entry Templates and +define there your templates. You can choose to complete a line using a +defined formula, based on other lines, or by requiring user input.
  4. +
+

To use an existing template:

+
    +
  1. Go to Invoicing / Accounting / Actions / Create Entry from Template
  2. +
  3. Select one of the available templates.
  4. +
  5. Complete the entries according to the template and click on the button Generate Journal Entry.
  6. +
+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Agile Business Group
  • +
  • Aurium Technologies
  • +
  • Vauxoo
  • +
  • ForgeFlow
  • +
  • Akretion
  • +
+
+
+

Contributors

+
+

Module Authors

+ +
+
+

Module Contributors

+ +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/account-financial-tools project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_move_template/tests/__init__.py b/account_move_template/tests/__init__.py new file mode 100644 index 000000000..6786498ff --- /dev/null +++ b/account_move_template/tests/__init__.py @@ -0,0 +1,4 @@ +# Needs to be re-written because wizard.multi.charts.accounts +# doesn't exist any more on v12 +# from . import test_account_move_template +from . import test_account_move_template_options diff --git a/account_move_template/tests/test_account_move_template.py b/account_move_template/tests/test_account_move_template.py new file mode 100644 index 000000000..9025f441f --- /dev/null +++ b/account_move_template/tests/test_account_move_template.py @@ -0,0 +1,215 @@ +# Copyright 2018-2019 ForgeFlow, S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +import logging + +from psycopg2 import IntegrityError + +from odoo import Command, fields +from odoo.tests.common import TransactionCase +from odoo.tools import mute_logger + +_logger = logging.getLogger(__name__) + + +class TestAccountMoveTemplate(TransactionCase): + def with_context(self, *args, **kwargs): + context = dict(args[0] if args else self.env.context, **kwargs) + self.env = self.env(context=context) + return self + + def _chart_of_accounts_create(self, company, chart): + _logger.debug("Creating chart of account") + self.env.user.write( + {"company_ids": [Command.link(company.id)], "company_id": company.id} + ) + self.with_context(company_id=company.id, force_company=company.id) + wizard = self.env["wizard.multi.charts.accounts"].create( + { + "company_id": company.id, + "chart_template_id": chart.id, + "code_digits": 6, + "currency_id": self.env.ref("base.EUR").id, + "transfer_account_id": chart.transfer_account_id.id, + } + ) + wizard.onchange_chart_template_id() + wizard.execute() + return True + + def setUp(self): + super(TestAccountMoveTemplate, self).setUp() + employees_group = self.env.ref("base.group_user") + multi_company_group = self.env.ref("base.group_multi_company") + account_user_group = self.env.ref("account.group_account_user") + account_manager_group = self.env.ref("account.group_account_manager") + self.company = self.env["res.company"].create({"name": "Test company"}) + self.company_2 = self.env["res.company"].create( + {"name": "Test company 2", "parent_id": self.company.id} + ) + self.env.user.company_ids += self.company + self.env.user.company_ids += self.company_2 + + self.user = ( + self.env["res.users"] + .with_user(self.env.user) + .with_context(no_reset_password=True) + .create( + { + "name": "Test User", + "login": "test_user", + "email": "test@oca.com", + "groups_id": [ + ( + 6, + 0, + [ + employees_group.id, + account_user_group.id, + account_manager_group.id, + multi_company_group.id, + ], + ) + ], + "company_id": self.company.id, + "company_ids": [Command.link(self.company.id)], + } + ) + ) + + self.chart = self.env["account.chart.template"].search([], limit=1) + self._chart_of_accounts_create(self.company, self.chart) + account_template = self.env["account.account.template"].create( + {"name": "Test 1", "code": "Code_test", "account_type": "asset_cash"} + ) + self.env["ir.model.data"].create( + { + "name": account_template.name, + "module": "account", + "model": "account.account.template", + "res_id": account_template.id, + "noupdate": 0, + } + ) + + self.chart_2 = self.env["account.chart.template"].create( + { + "name": "Test Chart", + "currency_id": self.env.ref("base.EUR").id, + "transfer_account_id": account_template.id, + } + ) + + account_template.chart_template_id = self.chart_2 + self.chart_2.tax_template_ids |= self.chart.tax_template_ids + + self._chart_of_accounts_create(self.company_2, self.chart_2) + + self.chart.company_id = self.company + self.chart_2.company_id = self.company_2 + + self.account_company_1 = self.env["account.account"].search( + [("company_id", "=", self.company.id)], limit=1 + ) + self.account_journal_1 = self.env["account.journal"].create( + { + "name": "Journal Company 1", + "company_id": self.company.id, + "code": "TST", + "type": "general", + } + ) + self.partner = self.env["res.partner"].create( + {"name": "Test partner", "company_id": False} + ) + self.partner2 = self.env["res.partner"].create( + {"name": "Test partner 2", "company_id": False} + ) + + self.tax_account_id = self.env["account.account"].create( + { + "name": "tax account", + "code": "TAX", + "account_type": "income_other", + "company_id": self.company.id, + } + ) + self.tax = self.env["account.tax"].create( + { + "name": "Tax 10.0%", + "amount": 10.0, + "amount_type": "percent", + "account_id": self.tax_account_id.id, + } + ) + + def test_create_template(self): + """Test that I can create a template""" + template = ( + self.env["account.move.template"] + .with_user(self.user) + .create( + { + "name": "Test Move Template", + "company_id": self.company.id, + "journal_id": self.account_journal_1.id, + "template_line_ids": [ + ( + 0, + 0, + { + "name": "L1", + "sequence": 1, + "account_id": self.account_company_1.id, + "partner_id": self.partner.id, + "tax_line_id": self.tax.id, + "move_line_type": "dr", + "type": "input", + }, + ), + ( + 0, + 0, + { + "name": "L2", + "sequence": 2, + "account_id": self.account_company_1.id, + "move_line_type": "cr", + "tax_ids": [Command.link(self.tax.id)], + "type": "input", + }, + ), + ], + } + ) + ) + + self.assertEqual(template.company_id, self.user.company_id) + + template_2 = template.copy() + self.assertEqual(template_2.name, "%s (copy)" % template.name) + + wiz = ( + self.env["wizard.select.move.template"] + .with_user(self.user) + .create( + { + "company_id": self.company.id, + "template_id": template.id, + "partner_id": self.partner2.id, + "date": fields.Date.today(), + } + ) + ) + wiz.load_lines() + res = wiz.load_template() + aml = self.env["account.move.line"].search( + [("account_id", "=", self.account_company_1.id)], limit=1 + ) + self.assertEqual(res["domain"], ([("id", "in", aml.move_id.ids)])) + aml = self.env["account.move.line"].search([("name", "=", "L1")], limit=1) + self.assertEqual(aml.tax_line_id, self.tax) + self.assertEqual(aml.partner_id, self.partner) + aml = self.env["account.move.line"].search([("name", "=", "L2")], limit=1) + self.assertEqual(aml.tax_ids[0], self.tax) + with self.assertRaises(IntegrityError), mute_logger("odoo.sql_db"): + template_2.name = template.name diff --git a/account_move_template/tests/test_account_move_template_options.py b/account_move_template/tests/test_account_move_template_options.py new file mode 100644 index 000000000..dc157f5ca --- /dev/null +++ b/account_move_template/tests/test_account_move_template_options.py @@ -0,0 +1,272 @@ +# Copyright 2020 Ecosoft (http://ecosoft.co.th) +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +from odoo import Command +from odoo.exceptions import UserError, ValidationError +from odoo.tests.common import Form, TransactionCase + + +class TestAccountMoveTemplateEnhanced(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.Move = cls.env["account.move"] + cls.Journal = cls.env["account.journal"] + cls.Account = cls.env["account.account"] + cls.Template = cls.env["account.move.template"] + cls.Partner = cls.env["res.partner"] + + cls.journal = cls.Journal.search([("type", "=", "general")], limit=1) + cls.ar_account_id = cls.Account.search( + [("account_type", "=", "asset_receivable")], limit=1 + ) + cls.ap_account_id = cls.Account.search( + [("account_type", "=", "liability_payable")], limit=1 + ) + cls.income_account_id = cls.Account.search( + [ + ("account_type", "=", "income_other"), + ("internal_group", "=", "income"), + ], + limit=1, + ) + cls.expense_account_id = cls.Account.search( + [ + ("account_type", "=", "expense"), + ("internal_group", "=", "expense"), + ], + limit=1, + ) + cls.partners = cls.Partner.search([], limit=3) + + # Create a simple move tempalte + ar_line = { + "sequence": 0, + "name": "AR Line 1", + "account_id": cls.ar_account_id.id, + "opt_account_id": cls.ap_account_id.id, + "move_line_type": "dr", + "type": "input", + } + income_line1 = { + "sequence": 1, + "name": "Income Line 2", + "account_id": cls.income_account_id.id, + "opt_account_id": cls.expense_account_id.id, + "move_line_type": "cr", + "type": "computed", + "python_code": "L0*1/3", + } + income_line2 = { + "sequence": 2, + "name": "Income Line 2", + "account_id": cls.income_account_id.id, + "opt_account_id": cls.expense_account_id.id, + "move_line_type": "cr", + "type": "computed", + "python_code": "L0*2/3", + } + + cls.move_template = cls.Template.create( + { + "name": "Test Template", + "journal_id": cls.journal.id, + "line_ids": [ + Command.create(ar_line), + Command.create(income_line1), + Command.create(income_line2), + ], + } + ) + + def test_move_template_normal(self): + """Test normal case, input amount 300""" + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + template_run = f.save() + template_run.load_lines() + template_run.line_ids[0].amount = 300 + res = template_run.generate_move() + move = self.Move.browse(res["res_id"]) + self.assertRecordValues( + move.line_ids.sorted("credit"), + [ + {"account_id": self.ar_account_id.id, "credit": 0.0, "debit": 300.0}, + { + "account_id": self.income_account_id.id, + "credit": 100.0, + "debit": 0.0, + }, + { + "account_id": self.income_account_id.id, + "credit": 200.0, + "debit": 0.0, + }, + ], + ) + + def test_move_template_optional(self): + """Test optional case, input amount -300, expect optional account""" + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + template_run = f.save() + template_run.load_lines() + template_run.line_ids[0].amount = -300 # Negative amount + res = template_run.generate_move() + move = self.Move.browse(res["res_id"]) + self.assertRecordValues( + move.line_ids.sorted("debit"), + [ + {"account_id": self.ap_account_id.id, "credit": 300.0, "debit": 0.0}, + { + "account_id": self.expense_account_id.id, + "credit": 0.0, + "debit": 100.0, + }, + { + "account_id": self.expense_account_id.id, + "credit": 0.0, + "debit": 200.0, + }, + ], + ) + + def test_move_template_overwrite(self): + """Test case overwrite, amount = 3000, no need to manual input""" + # Test for error when debit is not a valid field + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + f.overwrite = str( + { + "L0": { + "partner_id": self.partners[0].id, + "amount": 3000, + "debit": 3000, + }, + } + ) + template_run = f.save() + msg_error = "overwrite are .'partner_id', 'amount', 'name', 'date_maturity'" + with self.assertRaisesRegex(ValidationError, msg_error): + template_run.load_lines() + # Assign only on valid fields, and load_lines again + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + f.overwrite = str( + { + "L0": {"partner_id": self.partners[0].id, "amount": 3000}, + "L1": {"partner_id": self.partners[1].id}, + "L2": {"partner_id": self.partners[2].id}, + } + ) + template_run = f.save() + res = template_run.load_lines() + self.assertEqual(template_run.line_ids[0].partner_id, self.partners[0]) + self.assertEqual(template_run.line_ids[0].amount, 3000) + res = template_run.with_context(**res["context"]).generate_move() + move = self.Move.browse(res["res_id"]) + self.assertRecordValues( + move.line_ids.sorted("credit"), + [ + { + "partner_id": self.partners[0].id, + "account_id": self.ar_account_id.id, + "credit": 0.0, + "debit": 3000.0, + }, + { + "partner_id": self.partners[1].id, + "account_id": self.income_account_id.id, + "credit": 1000.0, + "debit": 0.0, + }, + { + "partner_id": self.partners[2].id, + "account_id": self.income_account_id.id, + "credit": 2000.0, + "debit": 0.0, + }, + ], + ) + + def test_move_copy(self): + template_copy = self.move_template.copy() + self.assertEqual(template_copy.name, "Test Template (copy)") + + def test_move_generate_from_action_button(self): + # `Generate Journal Entry` action button + res = self.move_template.generate_journal_entry() + self.assertEqual(res["name"], "Create Entry from Template") + self.assertEqual(res["res_model"], "account.move.template.run") + + def test_move_template_exceptions(self): + msg_error = "Python Code must be set for computed line with sequence 1." + with self.assertRaisesRegex(ValidationError, msg_error): + self.move_template.line_ids[1].python_code = "" + + self.move_template.line_ids[1].python_code = "P0*1/3" + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + template_run = f.save() + template_run.load_lines() + msg_error = "really exists and have a lower sequence than the current line." + with self.assertRaisesRegex(UserError, msg_error): + template_run.generate_move() + + self.move_template.line_ids[1].python_code = "L0*" + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + template_run = f.save() + template_run.load_lines() + msg_error = "the syntax of the formula is wrong." + with self.assertRaisesRegex(UserError, msg_error): + template_run.generate_move() + + self.move_template.line_ids[1].python_code = "L0*1/3" + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + template_run = f.save() + template_run.load_lines() + template_run.line_ids[0].amount = 0 + msg_error = "Debit and credit of all lines are null." + with self.assertRaisesRegex(UserError, msg_error): + template_run.generate_move() + + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + f.overwrite = [] + template_run = f.save() + msg_error = "Overwrite value must be a valid python dict" + with self.assertRaisesRegex(ValidationError, msg_error): + template_run.load_lines() + + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + f.overwrite = str({"P0": {"amount": 100}}) + template_run = f.save() + msg_error = "Keys must be line sequence, i..e, L1, L2, ..." + with self.assertRaisesRegex(ValidationError, msg_error): + template_run.load_lines() + + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + f.overwrite = str({"L0": []}) + template_run = f.save() + msg_error = "Invalid dictionary: 'list' object has no attribute 'keys'" + with self.assertRaisesRegex(ValidationError, msg_error): + template_run.load_lines() + + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + f.overwrite = str({"L0": {"test": 100}}) + template_run = f.save() + msg_error = "overwrite are .'partner_id', 'amount', 'name', 'date_maturity'" + with self.assertRaisesRegex(ValidationError, msg_error): + template_run.load_lines() + + with Form(self.env["account.move.template.run"]) as f: + f.template_id = self.move_template + template_run = f.save() + template_run.line_ids.unlink() + msg_error = "You deleted a line in the wizard. This is not allowed:" + with self.assertRaisesRegex(UserError, msg_error): + template_run.generate_move() diff --git a/account_move_template/view/account_move_template.xml b/account_move_template/view/account_move_template.xml new file mode 100644 index 000000000..9302a6b63 --- /dev/null +++ b/account_move_template/view/account_move_template.xml @@ -0,0 +1,193 @@ + + + + account.move.template.line.tree + account.move.template.line + + + + + + + + + + + + + + + + + + + + + account.move.template.line.form + account.move.template.line + +
+ + + + + + + + + + + + + + + + + + + + + + + > +
+

You can refer to other lines using their sequence number e.g. L1 for line with sequence = 1. Examples:

+
    +
  • L1 * 0.2
  • +
  • L2 - L1
  • +
  • L1 + L2 + L3
  • +
  • 1250
  • +
+
+ +
+
+
+
+
+
+ + account.move.template.form + account.move.template + +
+
+
+ + +
+
+ + + + + + + + + + + + + +
+
+
+
+ + account.move.template.tree + account.move.template + + + + + + + + + + account.move.template.search + account.move.template + + + + + + + + + + + + Journal Entry Templates + account.move.template + tree,form + + +
diff --git a/account_move_template/wizard/__init__.py b/account_move_template/wizard/__init__.py new file mode 100644 index 000000000..29902b757 --- /dev/null +++ b/account_move_template/wizard/__init__.py @@ -0,0 +1 @@ +from . import account_move_template_run diff --git a/account_move_template/wizard/account_move_template_run.py b/account_move_template/wizard/account_move_template_run.py new file mode 100644 index 000000000..52b122996 --- /dev/null +++ b/account_move_template/wizard/account_move_template_run.py @@ -0,0 +1,293 @@ +# Copyright 2015-2019 See manifest +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +from ast import literal_eval + +from odoo import Command, _, fields, models +from odoo.exceptions import UserError, ValidationError + + +class AccountMoveTemplateRun(models.TransientModel): + _name = "account.move.template.run" + _description = "Wizard to generate move from template" + _check_company_auto = True + + template_id = fields.Many2one( + "account.move.template", + required=True, + check_company=True, + domain="[('company_id', '=', company_id)]", + ) + company_id = fields.Many2one( + "res.company", + required=True, + readonly=True, + default=lambda self: self.env.company, + ) + partner_id = fields.Many2one( + "res.partner", + "Override Partner", + domain=["|", ("parent_id", "=", False), ("is_company", "=", True)], + ) + date = fields.Date(required=True, default=fields.Date.context_today) + journal_id = fields.Many2one("account.journal", string="Journal", readonly=True) + ref = fields.Char(string="Reference") + line_ids = fields.One2many( + "account.move.template.line.run", "wizard_id", string="Lines" + ) + state = fields.Selection( + [("select_template", "Select Template"), ("set_lines", "Set Lines")], + readonly=True, + default="select_template", + ) + overwrite = fields.Text( + help=""" +Valid dictionary to overwrite template lines: +{'L1': {'partner_id': 1, 'amount': 100, 'name': 'some label'}, + 'L2': {'partner_id': 2, 'amount': 200, 'name': 'some label 2'}, } + """ + ) + + def _prepare_wizard_line(self, tmpl_line): + vals = { + "wizard_id": self.id, + "sequence": tmpl_line.sequence, + "name": tmpl_line.name, + "amount": 0.0, + "account_id": tmpl_line.account_id.id, + "partner_id": tmpl_line.partner_id.id or False, + "move_line_type": tmpl_line.move_line_type, + "tax_line_id": tmpl_line.tax_line_id.id, + "tax_ids": [Command.set(tmpl_line.tax_ids.ids)], + "analytic_distribution": tmpl_line.analytic_distribution, + "note": tmpl_line.note, + "payment_term_id": tmpl_line.payment_term_id.id or False, + "is_refund": tmpl_line.is_refund, + "tax_repartition_line_id": tmpl_line.tax_repartition_line_id.id or False, + } + return vals + + # STEP 1 + def load_lines(self): + self.ensure_one() + # Verify and get overwrite dict + overwrite_vals = self._get_overwrite_vals() + amtlro = self.env["account.move.template.line.run"] + tmpl_lines = self.template_id.line_ids + for tmpl_line in tmpl_lines.filtered(lambda l: l.type == "input"): + vals = self._prepare_wizard_line(tmpl_line) + amtlro.create(vals) + self.write( + { + "journal_id": self.template_id.journal_id.id, + "ref": self.template_id.ref, + "state": "set_lines", + } + ) + if not self.line_ids: + return self.generate_move() + result = self.env["ir.actions.actions"]._for_xml_id( + "account_move_template.account_move_template_run_action" + ) + result.update({"res_id": self.id, "context": self.env.context}) + + # Overwrite self.line_ids to show overwrite values + self._overwrite_line(overwrite_vals) + # Pass context furtner to generate_move function, only readonly field + for key in overwrite_vals.keys(): + overwrite_vals[key].pop("amount", None) + result["context"] = dict(result.get("context", {}), overwrite=overwrite_vals) + return result + + def _get_valid_keys(self): + return ["partner_id", "amount", "name", "date_maturity"] + + def _get_overwrite_vals(self): + """valid_dict = { + 'L1': {'partner_id': 1, 'amount': 10}, + 'L2': {'partner_id': 2, 'amount': 20}, + } + """ + self.ensure_one() + valid_keys = self._get_valid_keys() + overwrite_vals = self.overwrite or "{}" + try: + overwrite_vals = literal_eval(overwrite_vals) + assert isinstance(overwrite_vals, dict) + except (SyntaxError, ValueError, AssertionError) as err: + raise ValidationError( + _("Overwrite value must be a valid python dict") + ) from err + # First level keys must be L1, L2, ... + keys = overwrite_vals.keys() + if list(filter(lambda x: x[:1] != "L" or not x[1:].isdigit(), keys)): + raise ValidationError(_("Keys must be line sequence, i..e, L1, L2, ...")) + # Second level keys must be a valid keys + try: + if dict( + filter(lambda x: set(overwrite_vals[x].keys()) - set(valid_keys), keys) + ): + raise ValidationError( + _("Valid fields to overwrite are %s") % valid_keys + ) + except ValidationError as e: + raise e + except Exception as e: + msg = """ + valid_dict = { + 'L1': {'partner_id': 1, 'amount': 10}, + 'L2': {'partner_id': 2, 'amount': 20}, + } + """ + raise ValidationError( + _( + "Invalid dictionary: %(exception)s\n%(msg)s", + exception=e, + msg=msg, + ) + ) from e + return overwrite_vals + + def _safe_vals(self, model, vals): + obj = self.env[model] + copy_vals = vals.copy() + invalid_keys = list( + set(list(vals.keys())) - set(list(dict(obj._fields).keys())) + ) + for key in invalid_keys: + copy_vals.pop(key) + return copy_vals + + def _overwrite_line(self, overwrite_vals): + self.ensure_one() + for line in self.line_ids: + vals = overwrite_vals.get("L{}".format(line.sequence), {}) + safe_vals = self._safe_vals(line._name, vals) + line.write(safe_vals) + + # STEP 2 + def generate_move(self): + self.ensure_one() + sequence2amount = {} + for wizard_line in self.line_ids: + sequence2amount[wizard_line.sequence] = wizard_line.amount + company_cur = self.company_id.currency_id + self.template_id.compute_lines(sequence2amount) + if all([company_cur.is_zero(x) for x in sequence2amount.values()]): + raise UserError(_("Debit and credit of all lines are null.")) + move_vals = self._prepare_move() + for line in self.template_id.line_ids: + amount = sequence2amount[line.sequence] + if not company_cur.is_zero(amount): + move_vals["line_ids"].append( + Command.create(self._prepare_move_line(line, amount)) + ) + move = self.env["account.move"].create(move_vals) + result = self.env["ir.actions.actions"]._for_xml_id( + "account.action_move_journal_line" + ) + result.update( + { + "name": _("Entry from template %s") % self.template_id.name, + "res_id": move.id, + "views": False, + "view_id": False, + "view_mode": "form,tree,kanban", + "context": self.env.context, + } + ) + return result + + def _prepare_move(self): + move_vals = { + "ref": self.ref, + "journal_id": self.journal_id.id, + "date": self.date, + "company_id": self.company_id.id, + "line_ids": [], + } + return move_vals + + def _prepare_move_line(self, line, amount): + date_maturity = False + if line.payment_term_id: + pterm_list = line.payment_term_id.compute(value=1, date_ref=self.date) + date_maturity = max(line[0] for line in pterm_list) + debit = line.move_line_type == "dr" + values = { + "name": line.name, + "account_id": line.account_id.id, + "credit": not debit and amount or 0.0, + "debit": debit and amount or 0.0, + "partner_id": self.partner_id.id or line.partner_id.id, + "date_maturity": date_maturity or self.date, + "tax_repartition_line_id": line.tax_repartition_line_id.id or False, + "analytic_distribution": line.analytic_distribution, + } + if line.tax_ids: + values["tax_ids"] = [Command.set(line.tax_ids.ids)] + tax_repartition = "refund_tax_id" if line.is_refund else "invoice_tax_id" + atrl_ids = self.env["account.tax.repartition.line"].search( + [ + (tax_repartition, "in", line.tax_ids.ids), + ("repartition_type", "=", "base"), + ] + ) + values["tax_tag_ids"] = [Command.set(atrl_ids.mapped("tag_ids").ids)] + if line.tax_repartition_line_id: + values["tax_tag_ids"] = [ + Command.set(line.tax_repartition_line_id.tag_ids.ids) + ] + # With overwrite options + overwrite = self._context.get("overwrite", {}) + move_line_vals = overwrite.get("L{}".format(line.sequence), {}) + values.update(move_line_vals) + # Use optional account, when amount is negative + self._update_account_on_negative(line, values) + return values + + def _update_account_on_negative(self, line, vals): + if not line.opt_account_id: + return + for key in ["debit", "credit"]: + if vals[key] < 0: + ikey = (key == "debit") and "credit" or "debit" + vals["account_id"] = line.opt_account_id.id + vals[ikey] = abs(vals[key]) + vals[key] = 0 + + +class AccountMoveTemplateLineRun(models.TransientModel): + _name = "account.move.template.line.run" + _description = "Wizard Lines to generate move from template" + _inherit = "analytic.mixin" + + wizard_id = fields.Many2one("account.move.template.run", ondelete="cascade") + company_id = fields.Many2one(related="wizard_id.company_id") + company_currency_id = fields.Many2one( + related="wizard_id.company_id.currency_id", string="Company Currency" + ) + sequence = fields.Integer(required=True) + name = fields.Char(readonly=True) + account_id = fields.Many2one("account.account", required=True, readonly=True) + tax_ids = fields.Many2many("account.tax", string="Taxes", readonly=True) + tax_line_id = fields.Many2one( + "account.tax", string="Originator Tax", ondelete="restrict", readonly=True + ) + partner_id = fields.Many2one("res.partner", readonly=True, string="Partner") + payment_term_id = fields.Many2one( + "account.payment.term", string="Payment Terms", readonly=True + ) + move_line_type = fields.Selection( + [("cr", "Credit"), ("dr", "Debit")], + required=True, + readonly=True, + string="Direction", + ) + amount = fields.Monetary(required=True, currency_field="company_currency_id") + note = fields.Char(readonly=True) + is_refund = fields.Boolean(string="Is a refund?", readonly=True) + tax_repartition_line_id = fields.Many2one( + "account.tax.repartition.line", + string="Tax Repartition Line", + readonly=True, + ) diff --git a/account_move_template/wizard/account_move_template_run_view.xml b/account_move_template/wizard/account_move_template_run_view.xml new file mode 100644 index 000000000..320a807fb --- /dev/null +++ b/account_move_template/wizard/account_move_template_run_view.xml @@ -0,0 +1,92 @@ + + + + account.move.template.run + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + Create Entry from Template + account.move.template.run + form + new + + +
diff --git a/setup/account_move_template/odoo/addons/account_move_template b/setup/account_move_template/odoo/addons/account_move_template new file mode 120000 index 000000000..aa552627f --- /dev/null +++ b/setup/account_move_template/odoo/addons/account_move_template @@ -0,0 +1 @@ +../../../../account_move_template \ No newline at end of file diff --git a/setup/account_move_template/setup.py b/setup/account_move_template/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_move_template/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)