mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
@@ -441,7 +441,10 @@ class ContractContract(models.Model):
|
|||||||
invoice_vals["invoice_line_ids"] = []
|
invoice_vals["invoice_line_ids"] = []
|
||||||
for line in contract_lines:
|
for line in contract_lines:
|
||||||
invoice_line_vals = line._prepare_invoice_line(move_form=move_form)
|
invoice_line_vals = line._prepare_invoice_line(move_form=move_form)
|
||||||
invoice_vals["invoice_line_ids"].append((0, 0, invoice_line_vals))
|
if invoice_line_vals:
|
||||||
|
# Allow extension modules to return an empty dictionary for
|
||||||
|
# nullifying line
|
||||||
|
invoice_vals["invoice_line_ids"].append((0, 0, invoice_line_vals))
|
||||||
invoices_values.append(invoice_vals)
|
invoices_values.append(invoice_vals)
|
||||||
contract_lines._update_recurring_next_date()
|
contract_lines._update_recurring_next_date()
|
||||||
return invoices_values
|
return invoices_values
|
||||||
|
|||||||
111
contract_variable_quantity/README.rst
Normal file
111
contract_variable_quantity/README.rst
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
=================================================
|
||||||
|
Variable quantity in contract recurrent invoicing
|
||||||
|
=================================================
|
||||||
|
|
||||||
|
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
!! This file is generated by oca-gen-addon-readme !!
|
||||||
|
!! changes will be overwritten. !!
|
||||||
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
.. |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%2Fcontract-lightgray.png?logo=github
|
||||||
|
:target: https://github.com/OCA/contract/tree/13.0/contract_variable_quantity
|
||||||
|
:alt: OCA/contract
|
||||||
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||||
|
:target: https://translation.odoo-community.org/projects/contract-13-0/contract-13-0-contract_variable_quantity
|
||||||
|
:alt: Translate me on Weblate
|
||||||
|
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||||
|
:target: https://runbot.odoo-community.org/runbot/110/13.0
|
||||||
|
:alt: Try me on Runbot
|
||||||
|
|
||||||
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||||
|
|
||||||
|
With this module, you will be able to define in recurring contracts some
|
||||||
|
lines with variable quantity according to a provided formula.
|
||||||
|
|
||||||
|
**Table of contents**
|
||||||
|
|
||||||
|
.. contents::
|
||||||
|
:local:
|
||||||
|
|
||||||
|
Configuration
|
||||||
|
=============
|
||||||
|
|
||||||
|
#. Go to Invoicing > Configuration > Contracts > Formulas (quantity).
|
||||||
|
#. Define any formula based on Python code that stores at some moment a
|
||||||
|
float/integer value of the quantity to invoice in the variable 'result'.
|
||||||
|
|
||||||
|
You can use these variables to compute your formula:
|
||||||
|
|
||||||
|
* *env*: Environment variable for getting other models.
|
||||||
|
* *context*: Current context dictionary.
|
||||||
|
* *user*: Current user.
|
||||||
|
* *line*: Contract recurring invoice line that triggers this formula.
|
||||||
|
* *contract*: Contract whose line belongs to.
|
||||||
|
* *invoice*: Invoice (header) being created.
|
||||||
|
|
||||||
|
.. figure:: https://raw.githubusercontent.com/OCA/contract/13.0/contract_variable_quantity/images/formula_form.png
|
||||||
|
:alt: Formula form
|
||||||
|
:width: 600 px
|
||||||
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
|
To use this module, you need to:
|
||||||
|
|
||||||
|
#. Go to Invoicing > Sales > Contracts and select or create a new contract.
|
||||||
|
#. Check *Generate recurring invoices automatically*.
|
||||||
|
#. Add a new recurring invoicing line.
|
||||||
|
#. Select "Variable quantity" in column "Qty. type".
|
||||||
|
#. Select one of the possible formulas to use (previously created).
|
||||||
|
|
||||||
|
Bug Tracker
|
||||||
|
===========
|
||||||
|
|
||||||
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/contract/issues>`_.
|
||||||
|
In case of trouble, please check there if your issue has already been reported.
|
||||||
|
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||||
|
`feedback <https://github.com/OCA/contract/issues/new?body=module:%20contract_variable_quantity%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||||
|
|
||||||
|
Do not contact contributors directly about support or help with technical issues.
|
||||||
|
|
||||||
|
Credits
|
||||||
|
=======
|
||||||
|
|
||||||
|
Authors
|
||||||
|
~~~~~~~
|
||||||
|
|
||||||
|
* Tecnativa
|
||||||
|
|
||||||
|
Contributors
|
||||||
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||||
|
|
||||||
|
* Pedro M. Baeza
|
||||||
|
* Carlos Roca
|
||||||
|
|
||||||
|
* Dave Lasley <dave@laslabs.com>
|
||||||
|
* Souheil Bejaoui <souheil.bejaoui@acsone.eu>
|
||||||
|
|
||||||
|
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/contract <https://github.com/OCA/contract/tree/13.0/contract_variable_quantity>`_ project on GitHub.
|
||||||
|
|
||||||
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||||
3
contract_variable_quantity/__init__.py
Normal file
3
contract_variable_quantity/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from . import models
|
||||||
23
contract_variable_quantity/__manifest__.py
Normal file
23
contract_variable_quantity/__manifest__.py
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Copyright 2016-2019 Tecnativa - Pedro M. Baeza
|
||||||
|
# Copyright 2018 Tecnativa - Carlos Dauden
|
||||||
|
# Copyright 2019 ACSONE SA/NV
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "Variable quantity in contract recurrent invoicing",
|
||||||
|
"version": "13.0.1.0.0",
|
||||||
|
"category": "Contract Management",
|
||||||
|
"license": "AGPL-3",
|
||||||
|
"author": "Tecnativa," "Odoo Community Association (OCA)",
|
||||||
|
"website": "https://www.tecnativa.com",
|
||||||
|
"depends": ["contract"],
|
||||||
|
"data": [
|
||||||
|
"security/ir.model.access.csv",
|
||||||
|
"views/abstract_contract_line.xml",
|
||||||
|
"views/contract_line_formula.xml",
|
||||||
|
"views/contract_line_views.xml",
|
||||||
|
"views/contract_template.xml",
|
||||||
|
"views/contract.xml",
|
||||||
|
],
|
||||||
|
"installable": True,
|
||||||
|
}
|
||||||
225
contract_variable_quantity/i18n/am.po
Normal file
225
contract_variable_quantity/i18n/am.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Última actualización por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/ar.po
Normal file
226
contract_variable_quantity/i18n/ar.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "أنشئ بواسطة"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "أنشئ في"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "المعرف"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "آخر تحديث بواسطة"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "آخر تحديث في"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الاسم"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/bg.po
Normal file
226
contract_variable_quantity/i18n/bg.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Kaloyan Naumov <kaloyan@lumnus.net>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-17 09:01+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-17 09:01+0000\n"
|
||||||
|
"Last-Translator: Kaloyan Naumov <kaloyan@lumnus.net>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Код"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Създадено от"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Създадено на"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Последно обновено на"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Последно обновено от"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Последно обновено на"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Име"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/bs.po
Normal file
226
contract_variable_quantity/i18n/bs.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Kreirao"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Kreirano"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naziv"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
231
contract_variable_quantity/i18n/ca.po
Normal file
231
contract_variable_quantity/i18n/ca.po
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-12-29 03:46+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-12-29 03:46+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Codi"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creat per"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creat el"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Darrera Actualització per"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Darrera Actualització el"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nom"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Compte analític"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
211
contract_variable_quantity/i18n/contract_variable_quantity.pot
Normal file
211
contract_variable_quantity/i18n/contract_variable_quantity.pot
Normal file
@@ -0,0 +1,211 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 12.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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid "Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
225
contract_variable_quantity/i18n/cs.po
Normal file
225
contract_variable_quantity/i18n/cs.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Vytvořil(a)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Vytvořeno"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Naposled upraveno"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Naposled upraveno"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Název"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/da.po
Normal file
225
contract_variable_quantity/i18n/da.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Oprettet af"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Oprettet den"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "Id"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Sidst opdateret af"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Sidst opdateret den"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Navn"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
256
contract_variable_quantity/i18n/de.po
Normal file
256
contract_variable_quantity/i18n/de.po
Normal file
@@ -0,0 +1,256 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-12-29 03:46+0000\n"
|
||||||
|
"PO-Revision-Date: 2019-10-29 21:33+0000\n"
|
||||||
|
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\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"
|
||||||
|
"X-Generator: Weblate 3.8\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" "
|
||||||
|
"env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>context</i>: Aktuelles context dictionary."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
"<i>contract</i>: Vertrag dessen\n"
|
||||||
|
" Position angehört."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
"<i>env</i>: Umgebungs-Variable, um\n"
|
||||||
|
" andere Modelle zu erhalten."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
"<i>invoice</i>: Rechnung (-skopf) der\n"
|
||||||
|
" erstellt wird."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
"<i>line</i>: Wiederkehrende Vertragsrechnungs-\n"
|
||||||
|
" position die diese Formel auslöst."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>user</i>: Aktueller Anwender."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr "Abstrakte Wiederkehrende Vertragsposition"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr "Klicken Sie, um eine neue Formel für variable Mengen einzugeben."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Schlüssel"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr "Vertrag"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr "Vertragsposition"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "Vertragspositionsformel"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Erstellt von"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Erstellt am:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Anzeigebezeichnung"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
"Fehler bei Codeprüfung.\n"
|
||||||
|
"Details: %s"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Beispiel von Python-Code"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Fixe Menge"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Formeln (Menge)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Hilfe zu Python-Ausdrücken."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
"Wenn angehakt, werden bei Null-Mengen keine Rechnungspositionen erstellt"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Zuletzt geändert am"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Zuletzt aktualisiert von"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Zuletzt aktualisiert am"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Bezeichnung"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "Kein gültiges Ergebnis geliefert."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "Mengenfomel"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "Mengenart"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr "Überspringe Nullmengenpositionen"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Variable Menge"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
"Sie können diese Variablen in Ihrer\n"
|
||||||
|
" Formel nutzen:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
"Sie müssen einen Python Codeblock einsetzen, der\n"
|
||||||
|
" irgendwo einen float/integer -Wert der\n"
|
||||||
|
" abzurechnenden Menge in der Variablen\n"
|
||||||
|
" 'result' speichert."
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Kostenstelle"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
229
contract_variable_quantity/i18n/el_GR.po
Normal file
229
contract_variable_quantity/i18n/el_GR.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-06-13 02:40+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-06-13 02:40+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Δημιουργήθηκε από "
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Δημιουργήθηκε στις"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "Κωδικός"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Τελευταία ενημέρωση από"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Τελευταία ενημέρωση στις"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Ονομασία"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Αναλυτικός Λογαριασμός"
|
||||||
226
contract_variable_quantity/i18n/en_GB.po
Normal file
226
contract_variable_quantity/i18n/en_GB.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Created by"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Created on"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Last Updated by"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Last Updated on"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Name"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
257
contract_variable_quantity/i18n/es.po
Normal file
257
contract_variable_quantity/i18n/es.po
Normal file
@@ -0,0 +1,257 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 11.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"PO-Revision-Date: 2019-10-30 01:33+0000\n"
|
||||||
|
"Last-Translator: Josep M <jmyepes@mac.com>\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 3.8\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" "
|
||||||
|
"env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>context</i>: Diccionario de contexto actual."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
"<i>contract</i>: Contrato cuya línea\n"
|
||||||
|
" pertenece a."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
"<i>env</i>: Variable de entorno para\n"
|
||||||
|
" conseguir otros modelos."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
"<i>invoice</i>: Factura (cabecera) está siendo\n"
|
||||||
|
" creada."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
"<i>line</i>: Línea de factura recurrente del contrato\n"
|
||||||
|
" que activa esta fórmula."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>user</i>: Usuario actual."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr "Extracto de la línea de contrato recurrente"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr "Pulse para crear una nueva fórmula para cantidades variables."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Código"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr "Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr "Línea contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "Fórmula de la línea de contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nombre mostrado"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
"Error evaluando el código.\n"
|
||||||
|
"Detalles: %s"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Ejemplo del código Python"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Cantidad fija"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Fórmulas (cantidad)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Ayuda con las expresiones Python."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID (identificación)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
"Si está marcado, las lineas de contrato con cantidad 0 no crearán líneas de "
|
||||||
|
"factura"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Última modificación en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Última actualización de"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "No se devuelve un valor válido."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "Fórmula cantidad"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "Tipo cantidad"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr "Saltar líneas con cantidad 0"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Cantidad variable"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
"Puede usar estas variables para calcular su\n"
|
||||||
|
" fórmula:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
"Debe insertar un bloque de código Python válido que\n"
|
||||||
|
" almacena en algún momento un valor flotante /"
|
||||||
|
" entero de\n"
|
||||||
|
" la cantidad a facturar en la variable\n"
|
||||||
|
" 'result'."
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Cuenta analítica"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
252
contract_variable_quantity/i18n/es_AR.po
Normal file
252
contract_variable_quantity/i18n/es_AR.po
Normal file
@@ -0,0 +1,252 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2020-07-21 07:19+0000\n"
|
||||||
|
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\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 3.10\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" "
|
||||||
|
"env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>contexto</i>: Diccionario de contexto actual."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
"<i>contrato</i>: Contrato cuya línea\n"
|
||||||
|
" pertenece a."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
"<i>env</i>: Variable de entorno para\n"
|
||||||
|
" conseguir otros modelos."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
"<i>factura</i>: Factura (cabecera) ha sido\n"
|
||||||
|
" creada."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
"<i>línea</i>: Contrato de línea de factura recurrente\n"
|
||||||
|
" que desencadena esta fórmula."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>usuario</i>: Usuario actual."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr "Línea Abstracta de Contrato Recurrente"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr "Haga clic para crear una nueva fórmula para cantidades variables."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Código"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr "Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr "Línea de Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "Fórmula de Línea de Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Mostrar Nombre"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
"Error evaluando código.\n"
|
||||||
|
"Detalles: %s"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Ejemplo de código Python"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Cantidad fija"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Fórmulas (cantidad)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Ayuda con expresiones Python."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
"Si está marcada, las líneas de contrato con 0 en cantidad no crean una línea "
|
||||||
|
"de factura"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Última Modificación el"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Última actualización realizada por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Última actualización el"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "Ningún resultado válido devuelto."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "Cant. fórmula"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "Cant. tipo"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr "Saltar Líneas de Cantidad Cero"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Cantidad variable"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
"Puede utilizar estas variables para computar su\n"
|
||||||
|
" fórmula:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
"Ha insertado un bloque válido de código Python que\n"
|
||||||
|
" almacena en algún momento un valor flotante/"
|
||||||
|
"entero de\n"
|
||||||
|
" la cantidad para facturar en la variable\n"
|
||||||
|
" 'resultado'."
|
||||||
226
contract_variable_quantity/i18n/es_CO.po
Normal file
226
contract_variable_quantity/i18n/es_CO.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/es_CR.po
Normal file
226
contract_variable_quantity/i18n/es_CR.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Ultima actualización por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Ultima actualización en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/es_DO.po
Normal file
226
contract_variable_quantity/i18n/es_DO.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID (identificación)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/es_EC.po
Normal file
226
contract_variable_quantity/i18n/es_EC.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/es_ES.po
Normal file
226
contract_variable_quantity/i18n/es_ES.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Última actualización por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
229
contract_variable_quantity/i18n/es_MX.po
Normal file
229
contract_variable_quantity/i18n/es_MX.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-06-13 02:40+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-06-13 02:40+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Ultima actualización por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Ultima actualización en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Cuenta analítica"
|
||||||
226
contract_variable_quantity/i18n/es_PY.po
Normal file
226
contract_variable_quantity/i18n/es_PY.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/es_VE.po
Normal file
226
contract_variable_quantity/i18n/es_VE.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Ultima actualización por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Ultima actualización en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/et.po
Normal file
225
contract_variable_quantity/i18n/et.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Loodud"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nimi"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/eu.po
Normal file
225
contract_variable_quantity/i18n/eu.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Izena"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/fa.po
Normal file
225
contract_variable_quantity/i18n/fa.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "ایجاد شده توسط"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "ایجاد شده در"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "شناسه"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "آخرین به روز رسانی توسط"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "آخرین به روز رسانی در"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
229
contract_variable_quantity/i18n/fi.po
Normal file
229
contract_variable_quantity/i18n/fi.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Koodi"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Luonut"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Luotu"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nimi"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Viimeksi muokattu"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Viimeksi päivittänyt"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Viimeksi päivitetty"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nimi"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Analyyttinen tili"
|
||||||
229
contract_variable_quantity/i18n/fr.po
Normal file
229
contract_variable_quantity/i18n/fr.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||||
|
# leemannd <denis.leemann@camptocamp.com>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-11-26 11:50+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-11-30 01:41+0000\n"
|
||||||
|
"Last-Translator: leemannd <denis.leemann@camptocamp.com>, 2017\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"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Code"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Créé par"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Date"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nom affiché"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Dernière modification le"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Dernière mise à jour par"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Dernière mise à jour le"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nom"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Quantité variable"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Compte analytique"
|
||||||
229
contract_variable_quantity/i18n/fr_CA.po
Normal file
229
contract_variable_quantity/i18n/fr_CA.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Martin Malorni <mm@microcom.ca>, 2016
|
||||||
|
# Adriana Ierfino <adriana.ierfino@savoirfairelinux.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Adriana Ierfino <adriana.ierfino@savoirfairelinux.com>, "
|
||||||
|
"2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Code"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Créé par"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Créé le"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Afficher le nom"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "Identifiant"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Dernière mise à jour par"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Dernière mise à jour le"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nom"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/fr_CH.po
Normal file
226
contract_variable_quantity/i18n/fr_CH.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Créé par"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Créé le"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Modifié par"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Modifié le"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
230
contract_variable_quantity/i18n/gl.po
Normal file
230
contract_variable_quantity/i18n/gl.po
Normal file
@@ -0,0 +1,230 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# César Castro Cruz <ulmroan@gmail.com>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Alejandro Santana <alejandrosantana@anubia.es>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Código"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creado en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Modificado por última vez o"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "ültima actualización por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Última actualización en"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Conta analítica"
|
||||||
226
contract_variable_quantity/i18n/gl_ES.po
Normal file
226
contract_variable_quantity/i18n/gl_ES.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Alejandro Santana <alejandrosantana@anubia.es>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/he.po
Normal file
225
contract_variable_quantity/i18n/he.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "נוצר על ידי"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "נוצר ב-"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "מזהה"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "עודכן לאחרונה על ידי"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "עודכן לאחרונה על"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
233
contract_variable_quantity/i18n/hi_IN.po
Normal file
233
contract_variable_quantity/i18n/hi_IN.po
Normal file
@@ -0,0 +1,233 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 11.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"PO-Revision-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||||
|
"Language-Team: Hindi (India) (https://www.transifex.com/oca/teams/23907/"
|
||||||
|
"hi_IN/)\n"
|
||||||
|
"Language: hi_IN\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "contract.line.qty.formula"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "द्वारा बनाया गया"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "को निर्मित"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "आईडी"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "अंतिम बार संशोधित"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "द्वारा अंतिम अद्यतन"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "अंतिम बार अद्यतन किया गया"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "नाम"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "कोई वैध परिणाम नहीं मिला।"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "विश्लेषणात्मक खाता"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
235
contract_variable_quantity/i18n/hr.po
Normal file
235
contract_variable_quantity/i18n/hr.po
Normal file
@@ -0,0 +1,235 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 11.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"PO-Revision-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr "<i>contract</i>: Ugovor kojem pripadaju stavke."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>user</i>: Trenutni korisnik."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Šifra"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "contract.line.qty.formula"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Kreirao"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Kreirano "
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Prikaži naziv"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Primjer python koda"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Fiksna količina"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Formule (količine)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Pomoć sa python izrazima"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Zadnja izmjena na"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Zadnje ažuriranje izvršio"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Zadnje ažuriranje na"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naziv"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "Nijedan valjani rezultat nije vraćen."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "Formula za količinu"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "Tip količine"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Promjeniva količina"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr "Možete koristiti sljedeće varijable u svojoj formuli:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Analitički konto"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
250
contract_variable_quantity/i18n/hr_HR.po
Normal file
250
contract_variable_quantity/i18n/hr_HR.po
Normal file
@@ -0,0 +1,250 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 11.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"PO-Revision-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result = env['product.product']."
|
||||||
|
"search_count([('sale_ok', '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>context</i>: Trenutni context dictionary."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr "<i>contract</i>: Ugovor čije linije pripadaju ovdje."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr "<i>env</i>: Environment variabla za dohvaćanje drugih modela."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr "<i>invoice</i>: Kreirani račun (zaglavlje)."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr "<i>line</i>: Stavka ponavljajućeg računa koja koristi ovu formulu."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>user</i>: trenutni korisnik."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr "Kliknite za kreiranje nove formule promjenivih količina."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Šifra"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "contract.line.qty.formula"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Kreirao"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Kreirano"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Naziv"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
"Greška pri izvršavanju koda.\n"
|
||||||
|
"Detalji: %s"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Primjer Python koda"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Fiknsa količina"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Formula (količine)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Pomoć u Python izrazima"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Zadnje modificirano"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Zadnje ažurirao"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Zadnje ažurirano"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naziv"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "Nije vraćen nijedan valjani rezultat."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "Formula količine"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "Tip količine"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Promjenjiva količina"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr "Za izračun količine možete koristiti ove varijable:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
"Morate upisati valjani blok python koda koji se u određenom trenutku "
|
||||||
|
"izvršava i vraća cjelobrojnu/decimalnu vrijednost kao rezultat za količine u "
|
||||||
|
"stavkama računa "
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Konto analitike"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
228
contract_variable_quantity/i18n/hu.po
Normal file
228
contract_variable_quantity/i18n/hu.po
Normal file
@@ -0,0 +1,228 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Készítette"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Létrehozás dátuma"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "Azonosító ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Utoljára frissítve, által"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Utoljára frissítve ekkor"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Név"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Analitikus gyűjtőkód könyvelés"
|
||||||
225
contract_variable_quantity/i18n/id.po
Normal file
225
contract_variable_quantity/i18n/id.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Dibuat oleh"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Dibuat pada"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Diperbaharui oleh"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Diperbaharui pada"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nama"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
230
contract_variable_quantity/i18n/it.po
Normal file
230
contract_variable_quantity/i18n/it.po
Normal file
@@ -0,0 +1,230 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Nicola Malcontenti <nicola.malcontenti@gmail.com>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Paolo Valier <paolo.valier@hotmail.it>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2016\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"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Codice"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creato da"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creato il"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nome da visualizzare"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Ultima modifica il"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Last Updated by"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Last Updated on"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Conto Analitico"
|
||||||
225
contract_variable_quantity/i18n/ja.po
Normal file
225
contract_variable_quantity/i18n/ja.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "作成者"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "作成日"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "最終更新者"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "最終更新日"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "名前"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/ko.po
Normal file
225
contract_variable_quantity/i18n/ko.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "작성자"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "작성일"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "최근 갱신한 사람"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "최근 갱신 날짜"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/lt.po
Normal file
226
contract_variable_quantity/i18n/lt.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Sukūrė"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Sukurta"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Paskutini kartą atnaujino"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Paskutinį kartą atnaujinta"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Pavadinimas"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
227
contract_variable_quantity/i18n/lt_LT.po
Normal file
227
contract_variable_quantity/i18n/lt_LT.po
Normal file
@@ -0,0 +1,227 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Arminas Grigonis <arminas@versada.lt>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Arminas Grigonis <arminas@versada.lt>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Sukūrė"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Sukurta"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Paskutinį kartą atnaujino"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Paskutinį kartą atnaujinta"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/lv.po
Normal file
226
contract_variable_quantity/i18n/lv.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Izveidoja"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Izveidots"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Pēdējo reizi atjaunoja"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Pēdējās izmaiņas"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nosaukums"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/mk.po
Normal file
225
contract_variable_quantity/i18n/mk.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Креирано од"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Креирано на"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Последно ажурирање од"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Последно ажурирање на"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Име"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/mn.po
Normal file
225
contract_variable_quantity/i18n/mn.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Үүсгэгч"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Үүсгэсэн огноо"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Сүүлийн засвар хийсэн"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Нэр"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/nb.po
Normal file
226
contract_variable_quantity/i18n/nb.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Opprettet av"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Opprettet"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Sist oppdatert av"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Sist oppdatert"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Navn"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/nb_NO.po
Normal file
226
contract_variable_quantity/i18n/nb_NO.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Kode"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Laget av"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Laget den"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Vis navn"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Sist endret den"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Sist oppdatert av"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Sist oppdatert den"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
232
contract_variable_quantity/i18n/nl.po
Normal file
232
contract_variable_quantity/i18n/nl.po
Normal file
@@ -0,0 +1,232 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2016\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"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Code"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Aangemaakt door"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Aangemaakt op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Weergave naam"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Laatst bijgewerkt op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Laatste bijgewerkt door"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Laatst bijgewerkt op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naam"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Kostenplaats"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
226
contract_variable_quantity/i18n/nl_BE.po
Normal file
226
contract_variable_quantity/i18n/nl_BE.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Gemaakt door"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Gemaakt op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Laatst bijgewerkt door"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Laatst bijgewerkt op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naam"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/nl_NL.po
Normal file
226
contract_variable_quantity/i18n/nl_NL.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Peter Hageman <hageman.p@gmail.com>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-11-30 01:41+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-11-30 01:41+0000\n"
|
||||||
|
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Code"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Aangemaakt door"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Aangemaakt op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Voorbeeld van Pythoncode"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Vaste hoeveelheid"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Formules (hoeveelheid)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Laatst aangepast op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Laatst bijgewerkt door"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Laatst bijgewerkt op"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naam"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/pl.po
Normal file
226
contract_variable_quantity/i18n/pl.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
|
"|| n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Kod"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Utworzone przez"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Data utworzenia"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Ostatnio modyfikowane przez"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Data ostatniej modyfikacji"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nazwa"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
246
contract_variable_quantity/i18n/pt.po
Normal file
246
contract_variable_quantity/i18n/pt.po
Normal file
@@ -0,0 +1,246 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||||
|
# Pedro Castro Silva <pedrocs@exo.pt>, 2018
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 11.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"PO-Revision-Date: 2020-02-18 19:13+0000\n"
|
||||||
|
"Last-Translator: alvarorib <alvaro.ribeiro@exo.pt>\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 3.10\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" "
|
||||||
|
"env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>context</i>: Dicionário de contexto corrente."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr "<i>contract</i>: Contrato a cuja linha pertence."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr "<i>env</i>: Variável de ambiente para obtenção de outros modelos."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr "<i>invoice</i>: Fatura (cabeçalho) a ser criada."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr "<i>line</i>: Linha de fatura de contrato que despoleta esta fórmula."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>user</i>: Utilizador corrente."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr "Linha de Contrato Recorrente Abstrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr "Clique para criar uma nova fórmula para quantidades variáveis."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Código"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr "Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr "Linha de Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "Fórmula de Linha de Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Criado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Criado em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nome a Apresentar"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
"Erro na avaliação do código.\n"
|
||||||
|
"Detalhes: %s"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Exemplo de Código Python"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Quantidade fixa"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Fórmulas (quantidade)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Ajuda de expressões Python."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
"Se assinalado, as linhas de contrato com quantidade 0 não criarão linhas de "
|
||||||
|
"faturas"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Última Modificação Em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Atualizado pela última vez por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Atualizado pela última vez em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "Não foi retornado nenhum resultado válido."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "Fórmula de Qtd."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "Tipo de Qtd."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr "Ignorar Linhas com Qtd. Zero"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Quantidade variável"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr "Pode usar estas variáveis na computação da sua fórmula:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
"Tem que inserir um bloco válido de código Python que guarde, em algum "
|
||||||
|
"momento, um valor float/integer na variável 'result' com a quantidade a "
|
||||||
|
"faturar."
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Conta Analítica"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
244
contract_variable_quantity/i18n/pt_BR.po
Normal file
244
contract_variable_quantity/i18n/pt_BR.po
Normal file
@@ -0,0 +1,244 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-11-30 01:41+0000\n"
|
||||||
|
"PO-Revision-Date: 2020-06-17 01:19+0000\n"
|
||||||
|
"Last-Translator: Fernando Colus <fcolus1@gmail.com>\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 3.10\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" "
|
||||||
|
"env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
"</code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>contexto</i>: Dicionário de contexto atual."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr "<i>contrato</i>: Contrato cuja linha pertence."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr "<i>env</i>: Variável de ambiente para obter outros modelos."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr "<i>Fatura</i>: Cabeçalho da fatura sendo criado."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
"<i>linha</i>: Linha da fatura recorrente do contrato que aciona esta fórmula."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>usuário</i>: Usuário atual."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr "Linha de Contrato Recorrente Abstrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr "Clique para criar uma nova fórmula para quantidades variáveis."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Código"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr "Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr "Linha de Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "Fórmula da Linha de Contrato"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Criado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Criado em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Exibir Nome"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
"Erro ao avaliar o código.\n"
|
||||||
|
"Detalhes: %s"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Exemplo de Código Python"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "Quantidade Fixa"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "Fórmulas (quantidade)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Ajuda com Expressões Python."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
"Se selecionada, as linhas do contrato com quantidade zero (0) não criam "
|
||||||
|
"linhas na fatura"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Última Modificação Feita em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Última Atualização Feita por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Última Atualização Feita em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "Sem resultados válidos retornados."
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "Fórmula da Quantidade"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "Tipo de Quantidade"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr "Ignorar Linhas com Quantidade Zero"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "Quantidade Variável"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr "Você pode usar estas variáveis para calcular sua fórmula:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
"Você deve inserir um bloco de código Python válido que armazena em algum "
|
||||||
|
"momento um valor inteiro/flutuante da quantidade para faturar na variável "
|
||||||
|
"'resultado'."
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Conta Analítica"
|
||||||
239
contract_variable_quantity/i18n/pt_PT.po
Normal file
239
contract_variable_quantity/i18n/pt_PT.po
Normal file
@@ -0,0 +1,239 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Daniel Reis <dreis.pt@gmail.com>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Pedro Castro Silva <pedrocs@sossia.pt>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2020-02-14 21:13+0000\n"
|
||||||
|
"Last-Translator: alvarorib <alvaro.ribeiro@exo.pt>\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"
|
||||||
|
"X-Generator: Weblate 3.10\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" "
|
||||||
|
"env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Código"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Criado por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Criado em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nome a Apresentar"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Última Modificação em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Atualizado pela última vez por"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Atualizado pela última vez em"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Conta Analítica"
|
||||||
230
contract_variable_quantity/i18n/ro.po
Normal file
230
contract_variable_quantity/i18n/ro.po
Normal file
@@ -0,0 +1,230 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creat de"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creat la"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Nume Afişat"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Ultima actualizare în"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Ultima actualizare făcută de"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Ultima actualizare la"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nume"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Cont analitic"
|
||||||
227
contract_variable_quantity/i18n/ru.po
Normal file
227
contract_variable_quantity/i18n/ru.po
Normal file
@@ -0,0 +1,227 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Код"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Создано"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Создан"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Последний раз обновлено"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Последний раз обновлено"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Название"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/sk.po
Normal file
225
contract_variable_quantity/i18n/sk.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Vytvoril"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Vytvorené"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Naposledy upravil"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Naposledy upravené"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
229
contract_variable_quantity/i18n/sk_SK.po
Normal file
229
contract_variable_quantity/i18n/sk_SK.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# ivbo <ivan@bock.sk>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: ivbo <ivan@bock.sk>, 2016\n"
|
||||||
|
"Language-Team: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/"
|
||||||
|
"sk_SK/)\n"
|
||||||
|
"Language: sk_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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Analytický účet"
|
||||||
230
contract_variable_quantity/i18n/sl.po
Normal file
230
contract_variable_quantity/i18n/sl.po
Normal file
@@ -0,0 +1,230 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Koda"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Ustvaril"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Ustvarjeno"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Prikazni naziv"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Zadnjič spremenjeno"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Zadnjič posodobil"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Zadnjič posodobljeno"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naziv"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Analitični konto"
|
||||||
226
contract_variable_quantity/i18n/sr.po
Normal file
226
contract_variable_quantity/i18n/sr.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Kreiran"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
227
contract_variable_quantity/i18n/sr@latin.po
Normal file
227
contract_variable_quantity/i18n/sr@latin.po
Normal file
@@ -0,0 +1,227 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||||
|
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
|
||||||
|
"sr@latin/)\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Kreiran"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/sv.po
Normal file
225
contract_variable_quantity/i18n/sv.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Skapad av"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Skapad den"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Senast uppdaterad av"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Senast uppdaterad"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Namn"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/th.po
Normal file
225
contract_variable_quantity/i18n/th.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "สร้างโดย"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "สร้างเมื่อ"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "รหัส"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "ชื่อ"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
229
contract_variable_quantity/i18n/tr.po
Normal file
229
contract_variable_quantity/i18n/tr.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||||
|
# Ediz Duman <neps1192@gmail.com>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-11-30 01:41+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-11-30 01:41+0000\n"
|
||||||
|
"Last-Translator: Ediz Duman <neps1192@gmail.com>, 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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Kodu"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Oluşturan"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Oluşturuldu"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Ad Görünümü"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Son Değiştirilme"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Son Güncelleyen"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Son Güncelleme"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Adı"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Analitik Hesap"
|
||||||
233
contract_variable_quantity/i18n/tr_TR.po
Normal file
233
contract_variable_quantity/i18n/tr_TR.po
Normal file
@@ -0,0 +1,233 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||||
|
# Ediz Duman <neps1192@gmail.com>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-02-25 01:45+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-02-25 01:45+0000\n"
|
||||||
|
"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2017\n"
|
||||||
|
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
|
||||||
|
"tr_TR/)\n"
|
||||||
|
"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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Oluşturan"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Oluşturulma"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "Ad Görünümü"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Son Güncelleme"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Son Güncelleyen"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Son Güncelleme"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "Analitik Hesap"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "account.analytic.invoice.line"
|
||||||
226
contract_variable_quantity/i18n/uk.po
Normal file
226
contract_variable_quantity/i18n/uk.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Створив"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Створено"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Востаннє відредаговано"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Дата останньої зміни"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
225
contract_variable_quantity/i18n/vi.po
Normal file
225
contract_variable_quantity/i18n/vi.po
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Tạo trên"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Tên"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
226
contract_variable_quantity/i18n/vi_VN.po
Normal file
226
contract_variable_quantity/i18n/vi_VN.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "Mã"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Tạo bởi"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Tạo vào"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Cập nhật lần cuối bởi"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Cập nhật lần cuối vào"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Tên"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
247
contract_variable_quantity/i18n/zh.po
Normal file
247
contract_variable_quantity/i18n/zh.po
Normal file
@@ -0,0 +1,247 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# DIT INTL <ditintlgroup@gmail.com>, 2018
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 11.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"PO-Revision-Date: 2018-04-27 01:12+0000\n"
|
||||||
|
"Last-Translator: DIT INTL <ditintlgroup@gmail.com>, 2018\n"
|
||||||
|
"Language-Team: Chinese (https://www.transifex.com/oca/teams/23907/zh/)\n"
|
||||||
|
"Language: zh\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result = env['product.product']."
|
||||||
|
"search_count([('sale_ok', '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>上下文</i>: 当前上下文字典。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr "<i>合同</i>: 合同行属于"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr "<i>环境变量 </i>:获取其他模块的环境变量。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr "<i>发票</i>: :正在创建发票(标题)。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr "<i>发票行</i>: 合同触发此公式的重复发票行。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr "<i>用户</i>: 当前用户 。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr "点击以创建可变数量的新公式。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr "代码"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr "合同行公式数量"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "创建人"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "创建于"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "显示名"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
"出错评估代码。\n"
|
||||||
|
"细节:%s"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr "Python代码示例"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr "固定数量"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr "公式(数量)"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr "Python表达式帮助。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr "如果选中,数量为零的合同行不会创建发票行"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "最后修改于"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "最好修改人"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "最后更新于"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "名称"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr "没有有效的结果返回。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr "公司数量"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr "类型数量"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr "忽略数量0的行"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr "可变数量"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr "您可以使用这些变量来计算公式:"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
"您必须插入有效的Python代码块,以便在变量'result'中存储需要发票的数量的浮点 / "
|
||||||
|
"整数值。"
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "分析会计"
|
||||||
|
|
||||||
|
#~ msgid "account.analytic.invoice.line"
|
||||||
|
#~ msgstr "分析会计合同明细行"
|
||||||
238
contract_variable_quantity/i18n/zh_CN.po
Normal file
238
contract_variable_quantity/i18n/zh_CN.po
Normal file
@@ -0,0 +1,238 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-06-13 02:40+0000\n"
|
||||||
|
"PO-Revision-Date: 2019-10-11 06:37+0000\n"
|
||||||
|
"Last-Translator: 黎伟杰 <674416404@qq.com>\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.8\n"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" "
|
||||||
|
"env['product.product'].search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr "<i>context</i>: 当前上下文字典。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
"<i>contract</i>:合同行\n"
|
||||||
|
"属于。"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "创建人"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "创建时间"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "显示名称"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "最后修改时间"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "最后更新人"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "最后更新时间"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "名称"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Analytic Account"
|
||||||
|
#~ msgstr "核算科目"
|
||||||
226
contract_variable_quantity/i18n/zh_TW.po
Normal file
226
contract_variable_quantity/i18n/zh_TW.po
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * contract_variable_quantity
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.0c\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-09-11 02:47+0000\n"
|
||||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<code>\n"
|
||||||
|
" result =\n"
|
||||||
|
" env['product.product']."
|
||||||
|
"search_count([('sale_ok',\n"
|
||||||
|
" '=', True)])\n"
|
||||||
|
" </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>context</i>: Current context dictionary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>contract</i>: Contract whose line\n"
|
||||||
|
" belongs to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>env</i>: Environment variable for\n"
|
||||||
|
" getting other models."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>invoice</i>: Invoice (header) being\n"
|
||||||
|
" created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"<i>line</i>: Contract recurring invoice\n"
|
||||||
|
" line that triggers this formula."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "<i>user</i>: Current user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_abstract_contract_line
|
||||||
|
msgid "Abstract Recurring Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.actions.act_window,help:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
msgid "Click to create a new formula for variable quantities."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__code
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_contract
|
||||||
|
msgid "Contract"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line
|
||||||
|
msgid "Contract Line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model,name:contract_variable_quantity.model_contract_line_qty_formula
|
||||||
|
msgid "Contract Line Formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "建立於"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__display_name
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:37
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Error evaluating code.\n"
|
||||||
|
"Details: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Example of Python code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Fixed quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.actions.act_window,name:contract_variable_quantity.action_contract_quantity_formula
|
||||||
|
#: model:ir.ui.menu,name:contract_variable_quantity.menu_contract_quantity_formula
|
||||||
|
msgid "Formulas (quantity)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Help with Python expressions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,help:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "If checked, contract lines with 0 qty don't create invoice line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula____last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line_qty_formula__name
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "名稱"
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: code:addons/contract_variable_quantity/models/contract_line_formula.py:40
|
||||||
|
#, python-format
|
||||||
|
msgid "No valid result returned."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_formula_id
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_formula_id
|
||||||
|
msgid "Qty. formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_abstract_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_line__qty_type
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_template_line__qty_type
|
||||||
|
msgid "Qty. type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model:ir.model.fields,field_description:contract_variable_quantity.field_contract_contract__skip_zero_qty
|
||||||
|
msgid "Skip Zero Qty Lines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: selection:contract.abstract.contract.line,qty_type:0
|
||||||
|
#: selection:contract.line,qty_type:0
|
||||||
|
#: selection:contract.template.line,qty_type:0
|
||||||
|
msgid "Variable quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You can use these variables to compute your\n"
|
||||||
|
" formula:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: contract_variable_quantity
|
||||||
|
#: model_terms:ir.ui.view,arch_db:contract_variable_quantity.view_contract_line_qty_formula_form
|
||||||
|
msgid ""
|
||||||
|
"You have to insert valid Python code block that\n"
|
||||||
|
" stores at some moment a float/integer value "
|
||||||
|
"of\n"
|
||||||
|
" the quantity to invoice in the variable\n"
|
||||||
|
" 'result'."
|
||||||
|
msgstr ""
|
||||||
BIN
contract_variable_quantity/images/formula_form.png
Normal file
BIN
contract_variable_quantity/images/formula_form.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 56 KiB |
6
contract_variable_quantity/models/__init__.py
Normal file
6
contract_variable_quantity/models/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from . import abstract_contract_line
|
||||||
|
from . import contract
|
||||||
|
from . import contract_line
|
||||||
|
from . import contract_line_formula
|
||||||
20
contract_variable_quantity/models/abstract_contract_line.py
Normal file
20
contract_variable_quantity/models/abstract_contract_line.py
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
# Copyright 2016 Tecnativa - Pedro M. Baeza
|
||||||
|
# Copyright 2018 Tecnativa - Carlos Dauden
|
||||||
|
# Copyright 2018 ACSONE SA/NV
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from odoo import fields, models
|
||||||
|
|
||||||
|
|
||||||
|
class ContractAbstractContractLine(models.AbstractModel):
|
||||||
|
_inherit = "contract.abstract.contract.line"
|
||||||
|
|
||||||
|
qty_type = fields.Selection(
|
||||||
|
selection=[("fixed", "Fixed quantity"), ("variable", "Variable quantity")],
|
||||||
|
required=True,
|
||||||
|
default="fixed",
|
||||||
|
string="Qty. type",
|
||||||
|
)
|
||||||
|
qty_formula_id = fields.Many2one(
|
||||||
|
comodel_name="contract.line.qty.formula", string="Qty. formula"
|
||||||
|
)
|
||||||
15
contract_variable_quantity/models/contract.py
Normal file
15
contract_variable_quantity/models/contract.py
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# Copyright 2016 Tecnativa - Pedro M. Baeza
|
||||||
|
# Copyright 2018 Tecnativa - Carlos Dauden
|
||||||
|
# Copyright 2018 ACSONE SA/NV
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from odoo import fields, models
|
||||||
|
|
||||||
|
|
||||||
|
class ContractContract(models.Model):
|
||||||
|
_inherit = "contract.contract"
|
||||||
|
|
||||||
|
skip_zero_qty = fields.Boolean(
|
||||||
|
string="Skip Zero Qty Lines",
|
||||||
|
help="If checked, contract lines with 0 qty don't create invoice line",
|
||||||
|
)
|
||||||
54
contract_variable_quantity/models/contract_line.py
Normal file
54
contract_variable_quantity/models/contract_line.py
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
# Copyright 2016 Tecnativa - Pedro M. Baeza
|
||||||
|
# Copyright 2018 Tecnativa - Carlos Dauden
|
||||||
|
# Copyright 2018 ACSONE SA/NV
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from odoo import models
|
||||||
|
from odoo.tools import float_is_zero
|
||||||
|
from odoo.tools.safe_eval import safe_eval
|
||||||
|
|
||||||
|
|
||||||
|
class AccountAnalyticInvoiceLine(models.Model):
|
||||||
|
_inherit = "contract.line"
|
||||||
|
|
||||||
|
def _get_quantity_to_invoice(
|
||||||
|
self, period_first_date, period_last_date, invoice_date
|
||||||
|
):
|
||||||
|
quantity = super()._get_quantity_to_invoice(
|
||||||
|
period_first_date, period_last_date, invoice_date
|
||||||
|
)
|
||||||
|
if not period_first_date or not period_last_date or not invoice_date:
|
||||||
|
return quantity
|
||||||
|
if self.qty_type == "variable":
|
||||||
|
eval_context = {
|
||||||
|
"env": self.env,
|
||||||
|
"context": self.env.context,
|
||||||
|
"user": self.env.user,
|
||||||
|
"line": self,
|
||||||
|
"quantity": quantity,
|
||||||
|
"period_first_date": period_first_date,
|
||||||
|
"period_last_date": period_last_date,
|
||||||
|
"invoice_date": invoice_date,
|
||||||
|
"contract": self.contract_id,
|
||||||
|
}
|
||||||
|
safe_eval(
|
||||||
|
self.qty_formula_id.code.strip(),
|
||||||
|
eval_context,
|
||||||
|
mode="exec",
|
||||||
|
nocopy=True,
|
||||||
|
) # nocopy for returning result
|
||||||
|
quantity = eval_context.get("result", 0)
|
||||||
|
return quantity
|
||||||
|
|
||||||
|
def _prepare_invoice_line(self, move_form):
|
||||||
|
vals = super()._prepare_invoice_line(move_form)
|
||||||
|
if (
|
||||||
|
"quantity" in vals
|
||||||
|
and self.contract_id.skip_zero_qty
|
||||||
|
and float_is_zero(
|
||||||
|
vals["quantity"],
|
||||||
|
self.env["decimal.precision"].precision_get("Product Unit of Measure"),
|
||||||
|
)
|
||||||
|
):
|
||||||
|
vals = {}
|
||||||
|
return vals
|
||||||
38
contract_variable_quantity/models/contract_line_formula.py
Normal file
38
contract_variable_quantity/models/contract_line_formula.py
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
# Copyright 2016 Tecnativa - Pedro M. Baeza
|
||||||
|
# Copyright 2018 Tecnativa - Carlos Dauden
|
||||||
|
# Copyright 2018 ACSONE SA/NV
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from odoo import _, api, exceptions, fields, models
|
||||||
|
from odoo.tools.safe_eval import safe_eval
|
||||||
|
|
||||||
|
|
||||||
|
class ContractLineFormula(models.Model):
|
||||||
|
_name = "contract.line.qty.formula"
|
||||||
|
_description = "Contract Line Formula"
|
||||||
|
|
||||||
|
name = fields.Char(required=True, translate=True)
|
||||||
|
code = fields.Text(required=True, default="result = 0")
|
||||||
|
|
||||||
|
@api.constrains("code")
|
||||||
|
def _check_code(self):
|
||||||
|
eval_context = {
|
||||||
|
"env": self.env,
|
||||||
|
"context": self.env.context,
|
||||||
|
"user": self.env.user,
|
||||||
|
"line": self.env["contract.line"],
|
||||||
|
"contract": self.env["contract.contract"],
|
||||||
|
"invoice": self.env["account.move"],
|
||||||
|
"quantity": 0,
|
||||||
|
"period_first_date": False,
|
||||||
|
"period_last_date": False,
|
||||||
|
"invoice_date": False,
|
||||||
|
}
|
||||||
|
try:
|
||||||
|
safe_eval(self.code.strip(), eval_context, mode="exec", nocopy=True)
|
||||||
|
except Exception as e:
|
||||||
|
raise exceptions.ValidationError(
|
||||||
|
_("Error evaluating code.\nDetails: %s") % e
|
||||||
|
)
|
||||||
|
if "result" not in eval_context:
|
||||||
|
raise exceptions.ValidationError(_("No valid result returned."))
|
||||||
16
contract_variable_quantity/readme/CONFIGURE.rst
Normal file
16
contract_variable_quantity/readme/CONFIGURE.rst
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#. Go to Invoicing > Configuration > Contracts > Formulas (quantity).
|
||||||
|
#. Define any formula based on Python code that stores at some moment a
|
||||||
|
float/integer value of the quantity to invoice in the variable 'result'.
|
||||||
|
|
||||||
|
You can use these variables to compute your formula:
|
||||||
|
|
||||||
|
* *env*: Environment variable for getting other models.
|
||||||
|
* *context*: Current context dictionary.
|
||||||
|
* *user*: Current user.
|
||||||
|
* *line*: Contract recurring invoice line that triggers this formula.
|
||||||
|
* *contract*: Contract whose line belongs to.
|
||||||
|
* *invoice*: Invoice (header) being created.
|
||||||
|
|
||||||
|
.. figure:: images/formula_form.png
|
||||||
|
:alt: Formula form
|
||||||
|
:width: 600 px
|
||||||
7
contract_variable_quantity/readme/CONTRIBUTORS.rst
Normal file
7
contract_variable_quantity/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||||
|
|
||||||
|
* Pedro M. Baeza
|
||||||
|
* Carlos Roca
|
||||||
|
|
||||||
|
* Dave Lasley <dave@laslabs.com>
|
||||||
|
* Souheil Bejaoui <souheil.bejaoui@acsone.eu>
|
||||||
2
contract_variable_quantity/readme/DESCRIPTION.rst
Normal file
2
contract_variable_quantity/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
With this module, you will be able to define in recurring contracts some
|
||||||
|
lines with variable quantity according to a provided formula.
|
||||||
7
contract_variable_quantity/readme/USAGE.rst
Normal file
7
contract_variable_quantity/readme/USAGE.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
To use this module, you need to:
|
||||||
|
|
||||||
|
#. Go to Invoicing > Sales > Contracts and select or create a new contract.
|
||||||
|
#. Check *Generate recurring invoices automatically*.
|
||||||
|
#. Add a new recurring invoicing line.
|
||||||
|
#. Select "Variable quantity" in column "Qty. type".
|
||||||
|
#. Select one of the possible formulas to use (previously created).
|
||||||
3
contract_variable_quantity/security/ir.model.access.csv
Normal file
3
contract_variable_quantity/security/ir.model.access.csv
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
|
||||||
|
"contract_line_qty_formula_manager","Recurring formula manager","model_contract_line_qty_formula","account.group_account_manager",1,1,1,1
|
||||||
|
"contract_line_qty_formula_user","Recurring formula user","model_contract_line_qty_formula","account.group_account_user",1,0,0,0
|
||||||
|
BIN
contract_variable_quantity/static/description/icon.png
Normal file
BIN
contract_variable_quantity/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.1 KiB |
301
contract_variable_quantity/static/description/icon.svg
Normal file
301
contract_variable_quantity/static/description/icon.svg
Normal file
@@ -0,0 +1,301 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:docname="icon.svg"
|
||||||
|
viewBox="0 0 128 128"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
width="128"
|
||||||
|
height="128"
|
||||||
|
inkscape:export-filename="icon.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4306">
|
||||||
|
<stop
|
||||||
|
id="stop4308"
|
||||||
|
style="stop-color:#dedc37"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop4310"
|
||||||
|
style="stop-color:#f8fa8d"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3727">
|
||||||
|
<stop
|
||||||
|
id="stop3729"
|
||||||
|
style="stop-color:#f3f360"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3731"
|
||||||
|
style="stop-color:#cbc630"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3717">
|
||||||
|
<stop
|
||||||
|
id="stop3719"
|
||||||
|
style="stop-color:#e4e240"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3725"
|
||||||
|
style="stop-color:#d4d237"
|
||||||
|
offset=".47047" />
|
||||||
|
<stop
|
||||||
|
id="stop3721"
|
||||||
|
style="stop-color:#f8f44e"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3590">
|
||||||
|
<stop
|
||||||
|
id="stop3592"
|
||||||
|
style="stop-color:#b8b852"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3594"
|
||||||
|
style="stop-color:#dbd649"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<filter
|
||||||
|
inkscape:menu-tooltip="In and out glow with a possible offset and colorizable flood"
|
||||||
|
inkscape:menu="Shadows and Glows"
|
||||||
|
inkscape:label="Cutout Glow"
|
||||||
|
style="color-interpolation-filters:sRGB;"
|
||||||
|
id="filter3869">
|
||||||
|
<feOffset
|
||||||
|
dy="3"
|
||||||
|
dx="3"
|
||||||
|
id="feOffset3871" />
|
||||||
|
<feGaussianBlur
|
||||||
|
stdDeviation="3"
|
||||||
|
result="blur"
|
||||||
|
id="feGaussianBlur3873" />
|
||||||
|
<feFlood
|
||||||
|
flood-color="rgb(0,0,0)"
|
||||||
|
flood-opacity="1"
|
||||||
|
result="flood"
|
||||||
|
id="feFlood3875" />
|
||||||
|
<feComposite
|
||||||
|
in="flood"
|
||||||
|
in2="SourceGraphic"
|
||||||
|
operator="in"
|
||||||
|
result="composite"
|
||||||
|
id="feComposite3877" />
|
||||||
|
<feBlend
|
||||||
|
in="blur"
|
||||||
|
in2="composite"
|
||||||
|
mode="normal"
|
||||||
|
id="feBlend3879" />
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
bordercolor="#666666"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
inkscape:window-height="1056"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:zoom="4.9954589"
|
||||||
|
inkscape:window-x="65"
|
||||||
|
showgrid="false"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:cx="73.86699"
|
||||||
|
inkscape:cy="46.4832"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:window-width="1855"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:document-units="px" />
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(-319.71,-475.23)">
|
||||||
|
<g
|
||||||
|
id="g3620"
|
||||||
|
transform="matrix(2.2116072,0,0,2.2116072,-246.9006,-632.55508)">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
sodipodi:nodetypes="sssssssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 298.70134,500.89595 -38.10593,0 c -2.4922,0 -4.39684,1.9053 -4.39684,4.39684 l 0,38.10527 c 0,2.4922 1.90464,4.39749 4.39684,4.39749 l 38.10593,0 c 2.49154,0 4.39683,-1.90529 4.39683,-4.39749 l 0,-38.10527 c 0,-2.49154 -1.90529,-4.39684 -4.39683,-4.39684 z"
|
||||||
|
id="path3618" />
|
||||||
|
<path
|
||||||
|
id="path3497"
|
||||||
|
d="m 298.70134,500.89595 -38.10593,0 c -2.4922,0 -4.39684,1.9053 -4.39684,4.39684 l 0,38.10527 c 0,2.4922 1.90464,4.39749 4.39684,4.39749 l 38.10593,0 c 2.49154,0 4.39683,-1.90529 4.39683,-4.39749 l 0,-38.10527 c 0,-2.49154 -1.90529,-4.39684 -4.39683,-4.39684 z m 1.4643,42.50211 c 0,0.88068 -0.58624,1.46561 -1.4643,1.46561 l -38.10593,0 c -0.87937,0 -1.46561,-0.58624 -1.46561,-1.46561 l 0,-38.10527 c 0,-0.88002 0.58624,-1.46561 1.46561,-1.46561 l 38.10593,0 c 0.88002,0 1.4643,0.58624 1.4643,1.46561 l 0,38.10527 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3499"
|
||||||
|
d="m 291.81296,519.06955 0.14787,-0.73216 c 0.14721,-0.43968 -0.14787,-0.87936 -0.58625,-1.02527 -0.43968,-0.14722 -0.88002,0.14722 -1.02593,0.58625 l -0.14721,0.73215 c -0.87937,-0.14656 -1.61218,0 -1.75874,0.43968 l -3.51812,13.33642 4.54274,1.17184 3.51682,-13.33642 c 0.14721,-0.29378 -0.29247,-0.87937 -1.17118,-1.17249 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3501"
|
||||||
|
d="m 294.01138,520.09548 c -0.14787,0 -0.441,0.14721 -0.441,0.29246 l -1.75873,6.59526 0.7328,0.14722 1.75874,-6.59526 c 0.001,-0.14656 0.001,-0.43968 -0.29181,-0.43968 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3503"
|
||||||
|
d="m 286.24363,536.80411 c 0,0 1.17249,-1.02593 2.05251,-1.90529 l -2.93057,-0.73346 c 0.29116,1.17314 0.87806,2.63875 0.87806,2.63875 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3505"
|
||||||
|
d="m 285.36361,536.07065 -0.29247,0 c -0.73281,0 -1.46496,0.14722 -4.39749,0.14722 -0.29247,0 -0.58625,-0.14722 -0.88003,-0.43969 -0.43902,-0.29312 -0.7328,-0.58624 -1.31905,-0.58624 l 0,0 c -0.43968,0 -0.88002,0.29247 -1.90529,0.73215 -0.43969,0.29312 -1.17249,0.58625 -1.46562,0.73346 0,-0.14787 0,-0.58624 0.14657,-0.73346 0.14721,-0.58624 0.14721,-1.17183 0,-1.4643 -0.14657,-0.14722 -0.29247,-0.14722 -0.43969,-0.14722 l 0,0 c -0.87937,0 -1.75873,1.02528 -2.78466,1.90464 -0.58494,0.5869 -1.31775,1.31906 -1.61087,1.31906 l 0,0 c -0.29312,-0.43969 0.73281,-2.4922 1.02593,-3.3696 0.58625,-1.46562 0.87937,-1.75874 0.43969,-2.05252 -0.14722,-0.14721 -0.29313,-0.14721 -0.73281,0 -0.58625,0.43969 -1.31905,1.02462 -1.9053,1.75874 -1.31905,1.17183 -2.6381,2.49285 -3.66403,2.05186 -0.14721,-0.14657 -0.43968,0 -0.58624,0.14917 -0.14657,0.14722 0,0.43969 0.14721,0.5856 1.46496,0.73215 2.93057,-0.73347 4.54275,-2.19777 0.43968,-0.29247 0.7328,-0.73215 1.17249,-1.02462 -0.14657,0.14656 -0.14657,0.29247 -0.29313,0.43968 -0.87936,1.9053 -1.46495,3.3696 -1.02527,4.10307 0.14656,0.14721 0.29312,0.29115 0.58624,0.29115 l 0,0 c 0.58625,0 1.31971,-0.73215 2.19842,-1.61151 0.73281,-0.73347 1.46562,-1.46562 2.05186,-1.61283 0,0.14721 0,0.43968 -0.14656,0.73346 -0.14722,0.58624 -0.14722,1.17183 0,1.46561 0.14591,0.14329 0.29247,0.29051 0.43903,0.29051 0.43968,0 1.02593,-0.29247 1.9053,-0.87937 0.43968,-0.29378 1.31905,-0.73346 1.46561,-0.73346 l 0,0 c 0.29247,0 0.58624,0.14721 0.87937,0.43968 0.29312,0.29378 0.7328,0.58625 1.31905,0.58625 3.07713,0 3.66534,0 4.54274,-0.14657 l 0.29312,0 c 0.14657,0 0.29247,-0.14721 0.29247,-0.44099 6.6e-4,-0.29116 0.29378,-0.29116 6.6e-4,-0.29116 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
id="rect3507"
|
||||||
|
height="2.9312253"
|
||||||
|
width="29.312252"
|
||||||
|
y="510.569"
|
||||||
|
x="264.99225" />
|
||||||
|
<rect
|
||||||
|
id="rect3509"
|
||||||
|
height="2.9305711"
|
||||||
|
width="18.467373"
|
||||||
|
y="516.43146"
|
||||||
|
x="264.99225" />
|
||||||
|
<rect
|
||||||
|
id="rect3511"
|
||||||
|
height="2.9312253"
|
||||||
|
width="18.467373"
|
||||||
|
y="523.75952"
|
||||||
|
x="264.99225" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g3513"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3515"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3517"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3519"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3521"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3523"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3525"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3527"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3529"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3531"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3533"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3535"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3537"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3539"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
id="g3541"
|
||||||
|
transform="matrix(0.65429135,0,0,0.65429135,252.06849,472.60499)" />
|
||||||
|
<g
|
||||||
|
transform="scale(1.0411221,0.9605021)"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:25.9893322px;line-height:125%;font-family:'Liberation Sans Narrow';-inkscape-font-specification:'Liberation Sans Narrow Bold Condensed';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
id="text3390">
|
||||||
|
<path
|
||||||
|
d="m 326.62742,615.79017 q 0,-1.56089 0.25381,-2.86797 0.26649,-1.31977 0.79947,-2.25884 0.53299,-0.95175 1.34515,-1.48474 0.82486,-0.53298 1.95428,-0.53298 1.12942,0 2.01773,0.58374 0.8883,0.58375 1.38322,1.89083 0,-0.26649 0.0127,-0.60913 0.0127,-0.35532 0.0381,-0.67257 0.0254,-0.32994 0.0508,-0.58375 0.0381,-0.2538 0.0508,-0.34263 l 2.8172,0 q -0.0254,0.45684 -0.0508,1.2817 -0.0127,0.82486 -0.0127,1.87814 l 0,15.96415 -2.90603,0 0,-5.71055 q 0,-0.35532 0.0127,-0.69796 0.0127,-0.34263 0.0127,-0.6345 0,0 0.0254,-0.63451 l -0.0254,0 q -0.50761,1.33246 -1.45936,1.94159 -0.93907,0.59643 -2.20808,0.59643 -1.06597,0 -1.84007,-0.53298 -0.77409,-0.53298 -1.2817,-1.48474 -0.5076,-0.95176 -0.74871,-2.24615 -0.24112,-1.30708 -0.24112,-2.84258 z m 7.77904,-0.0761 q 0,-1.37054 -0.21573,-2.25884 -0.20305,-0.88831 -0.54568,-1.4086 -0.32994,-0.53299 -0.76141,-0.73603 -0.43146,-0.21573 -0.86292,-0.21573 -0.55837,0 -1.00252,0.26649 -0.43146,0.26649 -0.73603,0.83755 -0.29187,0.57105 -0.45684,1.45936 -0.15228,0.88831 -0.15228,2.13194 0,4.66995 2.32229,4.66995 0.43146,0 0.86292,-0.22842 0.44416,-0.22842 0.78679,-0.77409 0.34263,-0.54568 0.54568,-1.45937 0.21573,-0.91368 0.21573,-2.28421 z"
|
||||||
|
style="fill:#808080"
|
||||||
|
id="path3409" />
|
||||||
|
<path
|
||||||
|
d="m 343.16263,622.87124 q -1.29439,0 -1.99235,-0.85023 -0.68526,-0.86293 -0.68526,-2.60147 l 0,-8.09629 -1.43398,0 0,-2.41112 1.57357,0 0.91369,-3.22329 1.84006,0 0,3.22329 2.13194,0 0,2.41112 -2.13194,0 0,7.13184 q 0,1.00252 0.30456,1.48474 0.31726,0.46953 0.96445,0.46953 0.26649,0 0.48222,-0.0508 0.22843,-0.0508 0.50761,-0.1269 l 0,2.20808 q -0.54568,0.21573 -1.1548,0.31725 -0.59644,0.11421 -1.31977,0.11421 z"
|
||||||
|
style="fill:#808080"
|
||||||
|
id="path3411" />
|
||||||
|
<path
|
||||||
|
d="m 353.18781,623.36616 q -0.40608,1.20556 -0.82486,2.08118 -0.41877,0.87561 -0.92637,1.44667 -0.49492,0.58374 -1.12942,0.86292 -0.62182,0.27919 -1.45937,0.27919 -0.45684,0 -0.93906,-0.0381 -0.46954,-0.0381 -0.901,-0.12691 l 0,-2.53802 q 0.20304,0.0381 0.49491,0.0634 0.30457,0.0381 0.50761,0.0381 0.43146,0 0.7614,-0.11422 0.34264,-0.11421 0.60913,-0.3807 0.26649,-0.26649 0.49491,-0.71064 0.24112,-0.44416 0.45685,-1.11673 l 0.19035,-0.60913 -4.45423,-13.5911 3.09639,0 1.76392,6.43388 q 0,0 0.1269,0.46954 l 0.20304,0.7614 0.22843,0.88831 0.21573,0.88831 q 0.10152,0.43146 0.16497,0.7614 0.0761,0.32995 0.11421,0.46954 0.0254,-0.13959 0.0888,-0.46954 l 0.16497,-0.73602 0.19035,-0.86293 0.20305,-0.87562 0.16497,-0.74871 q 0.0761,-0.34264 0.1269,-0.49492 l 1.6624,-6.48464 3.05832,0 -4.45423,14.45403 z"
|
||||||
|
style="fill:#808080"
|
||||||
|
id="path3413" />
|
||||||
|
<path
|
||||||
|
d="m 364.60891,611.95776 0,-2.8299 10.68506,0 0,2.8299 -10.68506,0 z m 0,6.99224 0,-2.80451 10.68506,0 0,2.80451 -10.68506,0 z"
|
||||||
|
style="fill:#808080"
|
||||||
|
id="path3415" />
|
||||||
|
<path
|
||||||
|
d="m 390.62362,622.64282 -2.62686,-4.97452 -2.63954,4.97452 -3.12176,0 4.12428,-7.09377 -3.92124,-6.63692 3.15983,0 2.39843,4.4923 2.39843,-4.4923 3.17253,0 -3.92124,6.59885 4.14966,7.13184 -3.17252,0 z"
|
||||||
|
style="fill:#808080"
|
||||||
|
id="path3417" />
|
||||||
|
<path
|
||||||
|
d="m 407.3111,615.42215 0,5.17757 -2.34767,0 0,-5.17757 -4.14966,0 0,-2.84258 4.14966,0 0,-5.17756 2.34767,0 0,5.17756 4.18774,0 0,2.84258 -4.18774,0 z"
|
||||||
|
style="fill:#808080"
|
||||||
|
id="path3419" />
|
||||||
|
<path
|
||||||
|
d="m 425.57217,623.36616 q -0.40609,1.20556 -0.82486,2.08118 -0.41877,0.87561 -0.92638,1.44667 -0.49491,0.58374 -1.12942,0.86292 -0.62181,0.27919 -1.45936,0.27919 -0.45684,0 -0.93907,-0.0381 -0.46953,-0.0381 -0.90099,-0.12691 l 0,-2.53802 q 0.20304,0.0381 0.49491,0.0634 0.30456,0.0381 0.5076,0.0381 0.43147,0 0.76141,-0.11422 0.34263,-0.11421 0.60912,-0.3807 0.2665,-0.26649 0.49492,-0.71064 0.24111,-0.44416 0.45684,-1.11673 l 0.19035,-0.60913 -4.45422,-13.5911 3.09638,0 1.76393,6.43388 q 0,0 0.1269,0.46954 l 0.20304,0.7614 0.22842,0.88831 0.21573,0.88831 q 0.10152,0.43146 0.16497,0.7614 0.0761,0.32995 0.11422,0.46954 0.0254,-0.13959 0.0888,-0.46954 l 0.16497,-0.73602 0.19035,-0.86293 0.20304,-0.87562 0.16497,-0.74871 q 0.0761,-0.34264 0.1269,-0.49492 l 1.66241,-6.48464 3.05831,0 -4.45422,14.45403 z"
|
||||||
|
style="fill:#808080"
|
||||||
|
id="path3421" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<metadata
|
||||||
|
id="metadata499">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work>
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<cc:license
|
||||||
|
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||||
|
<dc:publisher>
|
||||||
|
<cc:Agent
|
||||||
|
rdf:about="http://openclipart.org/">
|
||||||
|
<dc:title>Openclipart</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:publisher>
|
||||||
|
<dc:title>Pile of Golden Coins</dc:title>
|
||||||
|
<dc:date>2010-04-09T03:27:45</dc:date>
|
||||||
|
<dc:description>A pile of hypothetical golden coins, drawn in Inkscape.</dc:description>
|
||||||
|
<dc:source>https://openclipart.org/detail/43969/pile-of-golden-coins-by-j_alves</dc:source>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>J_Alves</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:subject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>coin</rdf:li>
|
||||||
|
<rdf:li>currency</rdf:li>
|
||||||
|
<rdf:li>gold</rdf:li>
|
||||||
|
<rdf:li>money</rdf:li>
|
||||||
|
<rdf:li>thaler</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</dc:subject>
|
||||||
|
</cc:Work>
|
||||||
|
<cc:License
|
||||||
|
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||||
|
<cc:permits
|
||||||
|
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||||
|
<cc:permits
|
||||||
|
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||||
|
<cc:permits
|
||||||
|
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||||
|
</cc:License>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 15 KiB |
466
contract_variable_quantity/static/description/index.html
Normal file
466
contract_variable_quantity/static/description/index.html
Normal file
@@ -0,0 +1,466 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
|
||||||
|
<title>Variable quantity in contract recurrent invoicing</title>
|
||||||
|
<style type="text/css">
|
||||||
|
|
||||||
|
/*
|
||||||
|
:Author: David Goodger (goodger@python.org)
|
||||||
|
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||||
|
:Copyright: This stylesheet has been placed in the public domain.
|
||||||
|
|
||||||
|
Default cascading style sheet for the HTML output of Docutils.
|
||||||
|
|
||||||
|
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||||
|
customize this style sheet.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* used to remove borders from tables and images */
|
||||||
|
.borderless, table.borderless td, table.borderless th {
|
||||||
|
border: 0 }
|
||||||
|
|
||||||
|
table.borderless td, table.borderless th {
|
||||||
|
/* Override padding for "table.docutils td" with "! important".
|
||||||
|
The right padding separates the table cells. */
|
||||||
|
padding: 0 0.5em 0 0 ! important }
|
||||||
|
|
||||||
|
.first {
|
||||||
|
/* Override more specific margin styles with "! important". */
|
||||||
|
margin-top: 0 ! important }
|
||||||
|
|
||||||
|
.last, .with-subtitle {
|
||||||
|
margin-bottom: 0 ! important }
|
||||||
|
|
||||||
|
.hidden {
|
||||||
|
display: none }
|
||||||
|
|
||||||
|
.subscript {
|
||||||
|
vertical-align: sub;
|
||||||
|
font-size: smaller }
|
||||||
|
|
||||||
|
.superscript {
|
||||||
|
vertical-align: super;
|
||||||
|
font-size: smaller }
|
||||||
|
|
||||||
|
a.toc-backref {
|
||||||
|
text-decoration: none ;
|
||||||
|
color: black }
|
||||||
|
|
||||||
|
blockquote.epigraph {
|
||||||
|
margin: 2em 5em ; }
|
||||||
|
|
||||||
|
dl.docutils dd {
|
||||||
|
margin-bottom: 0.5em }
|
||||||
|
|
||||||
|
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||||
|
dl.docutils dt {
|
||||||
|
font-weight: bold }
|
||||||
|
*/
|
||||||
|
|
||||||
|
div.abstract {
|
||||||
|
margin: 2em 5em }
|
||||||
|
|
||||||
|
div.abstract p.topic-title {
|
||||||
|
font-weight: bold ;
|
||||||
|
text-align: center }
|
||||||
|
|
||||||
|
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||||
|
div.hint, div.important, div.note, div.tip, div.warning {
|
||||||
|
margin: 2em ;
|
||||||
|
border: medium outset ;
|
||||||
|
padding: 1em }
|
||||||
|
|
||||||
|
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||||
|
div.important p.admonition-title, div.note p.admonition-title,
|
||||||
|
div.tip p.admonition-title {
|
||||||
|
font-weight: bold ;
|
||||||
|
font-family: sans-serif }
|
||||||
|
|
||||||
|
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||||
|
div.danger p.admonition-title, div.error p.admonition-title,
|
||||||
|
div.warning p.admonition-title, .code .error {
|
||||||
|
color: red ;
|
||||||
|
font-weight: bold ;
|
||||||
|
font-family: sans-serif }
|
||||||
|
|
||||||
|
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||||
|
compound paragraphs.
|
||||||
|
div.compound .compound-first, div.compound .compound-middle {
|
||||||
|
margin-bottom: 0.5em }
|
||||||
|
|
||||||
|
div.compound .compound-last, div.compound .compound-middle {
|
||||||
|
margin-top: 0.5em }
|
||||||
|
*/
|
||||||
|
|
||||||
|
div.dedication {
|
||||||
|
margin: 2em 5em ;
|
||||||
|
text-align: center ;
|
||||||
|
font-style: italic }
|
||||||
|
|
||||||
|
div.dedication p.topic-title {
|
||||||
|
font-weight: bold ;
|
||||||
|
font-style: normal }
|
||||||
|
|
||||||
|
div.figure {
|
||||||
|
margin-left: 2em ;
|
||||||
|
margin-right: 2em }
|
||||||
|
|
||||||
|
div.footer, div.header {
|
||||||
|
clear: both;
|
||||||
|
font-size: smaller }
|
||||||
|
|
||||||
|
div.line-block {
|
||||||
|
display: block ;
|
||||||
|
margin-top: 1em ;
|
||||||
|
margin-bottom: 1em }
|
||||||
|
|
||||||
|
div.line-block div.line-block {
|
||||||
|
margin-top: 0 ;
|
||||||
|
margin-bottom: 0 ;
|
||||||
|
margin-left: 1.5em }
|
||||||
|
|
||||||
|
div.sidebar {
|
||||||
|
margin: 0 0 0.5em 1em ;
|
||||||
|
border: medium outset ;
|
||||||
|
padding: 1em ;
|
||||||
|
background-color: #ffffee ;
|
||||||
|
width: 40% ;
|
||||||
|
float: right ;
|
||||||
|
clear: right }
|
||||||
|
|
||||||
|
div.sidebar p.rubric {
|
||||||
|
font-family: sans-serif ;
|
||||||
|
font-size: medium }
|
||||||
|
|
||||||
|
div.system-messages {
|
||||||
|
margin: 5em }
|
||||||
|
|
||||||
|
div.system-messages h1 {
|
||||||
|
color: red }
|
||||||
|
|
||||||
|
div.system-message {
|
||||||
|
border: medium outset ;
|
||||||
|
padding: 1em }
|
||||||
|
|
||||||
|
div.system-message p.system-message-title {
|
||||||
|
color: red ;
|
||||||
|
font-weight: bold }
|
||||||
|
|
||||||
|
div.topic {
|
||||||
|
margin: 2em }
|
||||||
|
|
||||||
|
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||||
|
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||||
|
margin-top: 0.4em }
|
||||||
|
|
||||||
|
h1.title {
|
||||||
|
text-align: center }
|
||||||
|
|
||||||
|
h2.subtitle {
|
||||||
|
text-align: center }
|
||||||
|
|
||||||
|
hr.docutils {
|
||||||
|
width: 75% }
|
||||||
|
|
||||||
|
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||||
|
clear: left ;
|
||||||
|
float: left ;
|
||||||
|
margin-right: 1em }
|
||||||
|
|
||||||
|
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||||
|
clear: right ;
|
||||||
|
float: right ;
|
||||||
|
margin-left: 1em }
|
||||||
|
|
||||||
|
img.align-center, .figure.align-center, object.align-center {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.align-center {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.align-left {
|
||||||
|
text-align: left }
|
||||||
|
|
||||||
|
.align-center {
|
||||||
|
clear: both ;
|
||||||
|
text-align: center }
|
||||||
|
|
||||||
|
.align-right {
|
||||||
|
text-align: right }
|
||||||
|
|
||||||
|
/* reset inner alignment in figures */
|
||||||
|
div.align-right {
|
||||||
|
text-align: inherit }
|
||||||
|
|
||||||
|
/* div.align-center * { */
|
||||||
|
/* text-align: left } */
|
||||||
|
|
||||||
|
.align-top {
|
||||||
|
vertical-align: top }
|
||||||
|
|
||||||
|
.align-middle {
|
||||||
|
vertical-align: middle }
|
||||||
|
|
||||||
|
.align-bottom {
|
||||||
|
vertical-align: bottom }
|
||||||
|
|
||||||
|
ol.simple, ul.simple {
|
||||||
|
margin-bottom: 1em }
|
||||||
|
|
||||||
|
ol.arabic {
|
||||||
|
list-style: decimal }
|
||||||
|
|
||||||
|
ol.loweralpha {
|
||||||
|
list-style: lower-alpha }
|
||||||
|
|
||||||
|
ol.upperalpha {
|
||||||
|
list-style: upper-alpha }
|
||||||
|
|
||||||
|
ol.lowerroman {
|
||||||
|
list-style: lower-roman }
|
||||||
|
|
||||||
|
ol.upperroman {
|
||||||
|
list-style: upper-roman }
|
||||||
|
|
||||||
|
p.attribution {
|
||||||
|
text-align: right ;
|
||||||
|
margin-left: 50% }
|
||||||
|
|
||||||
|
p.caption {
|
||||||
|
font-style: italic }
|
||||||
|
|
||||||
|
p.credits {
|
||||||
|
font-style: italic ;
|
||||||
|
font-size: smaller }
|
||||||
|
|
||||||
|
p.label {
|
||||||
|
white-space: nowrap }
|
||||||
|
|
||||||
|
p.rubric {
|
||||||
|
font-weight: bold ;
|
||||||
|
font-size: larger ;
|
||||||
|
color: maroon ;
|
||||||
|
text-align: center }
|
||||||
|
|
||||||
|
p.sidebar-title {
|
||||||
|
font-family: sans-serif ;
|
||||||
|
font-weight: bold ;
|
||||||
|
font-size: larger }
|
||||||
|
|
||||||
|
p.sidebar-subtitle {
|
||||||
|
font-family: sans-serif ;
|
||||||
|
font-weight: bold }
|
||||||
|
|
||||||
|
p.topic-title {
|
||||||
|
font-weight: bold }
|
||||||
|
|
||||||
|
pre.address {
|
||||||
|
margin-bottom: 0 ;
|
||||||
|
margin-top: 0 ;
|
||||||
|
font: inherit }
|
||||||
|
|
||||||
|
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||||
|
margin-left: 2em ;
|
||||||
|
margin-right: 2em }
|
||||||
|
|
||||||
|
pre.code .ln { color: grey; } /* line numbers */
|
||||||
|
pre.code, code { background-color: #eeeeee }
|
||||||
|
pre.code .comment, code .comment { color: #5C6576 }
|
||||||
|
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||||
|
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||||
|
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||||
|
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||||
|
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||||
|
|
||||||
|
span.classifier {
|
||||||
|
font-family: sans-serif ;
|
||||||
|
font-style: oblique }
|
||||||
|
|
||||||
|
span.classifier-delimiter {
|
||||||
|
font-family: sans-serif ;
|
||||||
|
font-weight: bold }
|
||||||
|
|
||||||
|
span.interpreted {
|
||||||
|
font-family: sans-serif }
|
||||||
|
|
||||||
|
span.option {
|
||||||
|
white-space: nowrap }
|
||||||
|
|
||||||
|
span.pre {
|
||||||
|
white-space: pre }
|
||||||
|
|
||||||
|
span.problematic {
|
||||||
|
color: red }
|
||||||
|
|
||||||
|
span.section-subtitle {
|
||||||
|
/* font-size relative to parent (h1..h6 element) */
|
||||||
|
font-size: 80% }
|
||||||
|
|
||||||
|
table.citation {
|
||||||
|
border-left: solid 1px gray;
|
||||||
|
margin-left: 1px }
|
||||||
|
|
||||||
|
table.docinfo {
|
||||||
|
margin: 2em 4em }
|
||||||
|
|
||||||
|
table.docutils {
|
||||||
|
margin-top: 0.5em ;
|
||||||
|
margin-bottom: 0.5em }
|
||||||
|
|
||||||
|
table.footnote {
|
||||||
|
border-left: solid 1px black;
|
||||||
|
margin-left: 1px }
|
||||||
|
|
||||||
|
table.docutils td, table.docutils th,
|
||||||
|
table.docinfo td, table.docinfo th {
|
||||||
|
padding-left: 0.5em ;
|
||||||
|
padding-right: 0.5em ;
|
||||||
|
vertical-align: top }
|
||||||
|
|
||||||
|
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||||
|
font-weight: bold ;
|
||||||
|
text-align: left ;
|
||||||
|
white-space: nowrap ;
|
||||||
|
padding-left: 0 }
|
||||||
|
|
||||||
|
/* "booktabs" style (no vertical lines) */
|
||||||
|
table.docutils.booktabs {
|
||||||
|
border: 0px;
|
||||||
|
border-top: 2px solid;
|
||||||
|
border-bottom: 2px solid;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
table.docutils.booktabs * {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
table.docutils.booktabs th {
|
||||||
|
border-bottom: thin solid;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||||
|
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||||
|
font-size: 100% }
|
||||||
|
|
||||||
|
ul.auto-toc {
|
||||||
|
list-style-type: none }
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="document" id="variable-quantity-in-contract-recurrent-invoicing">
|
||||||
|
<h1 class="title">Variable quantity in contract recurrent invoicing</h1>
|
||||||
|
|
||||||
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
!! This file is generated by oca-gen-addon-readme !!
|
||||||
|
!! changes will be overwritten. !!
|
||||||
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||||
|
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/contract/tree/13.0/contract_variable_quantity"><img alt="OCA/contract" src="https://img.shields.io/badge/github-OCA%2Fcontract-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/contract-13-0/contract-13-0-contract_variable_quantity"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/110/13.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||||
|
<p>With this module, you will be able to define in recurring contracts some
|
||||||
|
lines with variable quantity according to a provided formula.</p>
|
||||||
|
<p><strong>Table of contents</strong></p>
|
||||||
|
<div class="contents local topic" id="contents">
|
||||||
|
<ul class="simple">
|
||||||
|
<li><a class="reference internal" href="#configuration" id="id1">Configuration</a></li>
|
||||||
|
<li><a class="reference internal" href="#usage" id="id2">Usage</a></li>
|
||||||
|
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
|
||||||
|
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
|
||||||
|
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
|
||||||
|
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
|
||||||
|
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="configuration">
|
||||||
|
<h1><a class="toc-backref" href="#id1">Configuration</a></h1>
|
||||||
|
<ol class="arabic">
|
||||||
|
<li><p class="first">Go to Invoicing > Configuration > Contracts > Formulas (quantity).</p>
|
||||||
|
</li>
|
||||||
|
<li><p class="first">Define any formula based on Python code that stores at some moment a
|
||||||
|
float/integer value of the quantity to invoice in the variable ‘result’.</p>
|
||||||
|
<p>You can use these variables to compute your formula:</p>
|
||||||
|
<ul class="simple">
|
||||||
|
<li><em>env</em>: Environment variable for getting other models.</li>
|
||||||
|
<li><em>context</em>: Current context dictionary.</li>
|
||||||
|
<li><em>user</em>: Current user.</li>
|
||||||
|
<li><em>line</em>: Contract recurring invoice line that triggers this formula.</li>
|
||||||
|
<li><em>contract</em>: Contract whose line belongs to.</li>
|
||||||
|
<li><em>invoice</em>: Invoice (header) being created.</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<div class="figure">
|
||||||
|
<img alt="Formula form" src="https://raw.githubusercontent.com/OCA/contract/13.0/contract_variable_quantity/images/formula_form.png" style="width: 600px;" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="usage">
|
||||||
|
<h1><a class="toc-backref" href="#id2">Usage</a></h1>
|
||||||
|
<p>To use this module, you need to:</p>
|
||||||
|
<ol class="arabic simple">
|
||||||
|
<li>Go to Invoicing > Sales > Contracts and select or create a new contract.</li>
|
||||||
|
<li>Check <em>Generate recurring invoices automatically</em>.</li>
|
||||||
|
<li>Add a new recurring invoicing line.</li>
|
||||||
|
<li>Select “Variable quantity” in column “Qty. type”.</li>
|
||||||
|
<li>Select one of the possible formulas to use (previously created).</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="bug-tracker">
|
||||||
|
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
|
||||||
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/contract/issues">GitHub Issues</a>.
|
||||||
|
In case of trouble, please check there if your issue has already been reported.
|
||||||
|
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||||
|
<a class="reference external" href="https://github.com/OCA/contract/issues/new?body=module:%20contract_variable_quantity%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||||
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="credits">
|
||||||
|
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
|
||||||
|
<div class="section" id="authors">
|
||||||
|
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
|
||||||
|
<ul class="simple">
|
||||||
|
<li>Tecnativa</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="contributors">
|
||||||
|
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
|
||||||
|
<ul>
|
||||||
|
<li><p class="first"><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:</p>
|
||||||
|
<blockquote>
|
||||||
|
<ul class="simple">
|
||||||
|
<li>Pedro M. Baeza</li>
|
||||||
|
<li>Carlos Roca</li>
|
||||||
|
</ul>
|
||||||
|
</blockquote>
|
||||||
|
</li>
|
||||||
|
<li><p class="first">Dave Lasley <<a class="reference external" href="mailto:dave@laslabs.com">dave@laslabs.com</a>></p>
|
||||||
|
</li>
|
||||||
|
<li><p class="first">Souheil Bejaoui <<a class="reference external" href="mailto:souheil.bejaoui@acsone.eu">souheil.bejaoui@acsone.eu</a>></p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="maintainers">
|
||||||
|
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
|
||||||
|
<p>This module is maintained by the OCA.</p>
|
||||||
|
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||||
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||||
|
mission is to support the collaborative development of Odoo features and
|
||||||
|
promote its widespread use.</p>
|
||||||
|
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/contract/tree/13.0/contract_variable_quantity">OCA/contract</a> project on GitHub.</p>
|
||||||
|
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
3
contract_variable_quantity/tests/__init__.py
Normal file
3
contract_variable_quantity/tests/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
from . import test_contract_variable_quantity
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
# Copyright 2016 Tecnativa - Pedro M. Baeza
|
||||||
|
# Copyright 2018 Tecnativa - Carlos Dauden
|
||||||
|
# Copyright 2018 ACSONE SA/NV
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
import odoo.tests
|
||||||
|
from odoo import exceptions
|
||||||
|
|
||||||
|
|
||||||
|
@odoo.tests.at_install(False)
|
||||||
|
@odoo.tests.post_install(True)
|
||||||
|
class TestContractVariableQuantity(odoo.tests.HttpCase):
|
||||||
|
def setUp(self):
|
||||||
|
super(TestContractVariableQuantity, self).setUp()
|
||||||
|
self.partner = self.env["res.partner"].create({"name": "Test partner"})
|
||||||
|
self.product = self.env["product.product"].create({"name": "Test product"})
|
||||||
|
self.contract = self.env["contract.contract"].create(
|
||||||
|
{
|
||||||
|
"name": "Test Contract",
|
||||||
|
"partner_id": self.partner.id,
|
||||||
|
"pricelist_id": self.partner.property_product_pricelist.id,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
self.formula = self.env["contract.line.qty.formula"].create(
|
||||||
|
{
|
||||||
|
"name": "Test formula",
|
||||||
|
# For testing each of the possible variables
|
||||||
|
"code": 'env["res.users"]\n'
|
||||||
|
'context.get("lang")\n'
|
||||||
|
"user.id\n"
|
||||||
|
"line.qty_type\n"
|
||||||
|
"contract.id\n"
|
||||||
|
"quantity\n"
|
||||||
|
"period_first_date\n"
|
||||||
|
"period_last_date\n"
|
||||||
|
"invoice_date\n"
|
||||||
|
"result = 12",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
self.contract_line = self.env["contract.line"].create(
|
||||||
|
{
|
||||||
|
"contract_id": self.contract.id,
|
||||||
|
"product_id": self.product.id,
|
||||||
|
"name": "Test",
|
||||||
|
"qty_type": "variable",
|
||||||
|
"qty_formula_id": self.formula.id,
|
||||||
|
"quantity": 1,
|
||||||
|
"uom_id": self.product.uom_id.id,
|
||||||
|
"price_unit": 100,
|
||||||
|
"discount": 50,
|
||||||
|
"recurring_rule_type": "monthly",
|
||||||
|
"recurring_interval": 1,
|
||||||
|
"date_start": "2016-02-15",
|
||||||
|
"recurring_next_date": "2016-02-29",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_check_invalid_code(self):
|
||||||
|
with self.assertRaises(exceptions.ValidationError):
|
||||||
|
self.formula.code = "sdsds"
|
||||||
|
|
||||||
|
def test_check_no_return_value(self):
|
||||||
|
with self.assertRaises(exceptions.ValidationError):
|
||||||
|
self.formula.code = "user.id"
|
||||||
|
|
||||||
|
def test_check_variable_quantity(self):
|
||||||
|
self.contract.recurring_create_invoice()
|
||||||
|
invoice = self.contract._get_related_invoices()
|
||||||
|
self.assertEqual(invoice.invoice_line_ids[0].quantity, 12)
|
||||||
|
|
||||||
|
def test_check_skip_zero_qty(self):
|
||||||
|
self.formula.code = "result=0"
|
||||||
|
self.contract.skip_zero_qty = True
|
||||||
|
invoice = self.contract.recurring_create_invoice()
|
||||||
|
self.assertFalse(invoice.invoice_line_ids)
|
||||||
|
self.contract.skip_zero_qty = False
|
||||||
|
invoice = self.contract.recurring_create_invoice()
|
||||||
|
self.assertAlmostEqual(invoice.invoice_line_ids[0].quantity, 0.0)
|
||||||
27
contract_variable_quantity/views/abstract_contract_line.xml
Normal file
27
contract_variable_quantity/views/abstract_contract_line.xml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<odoo>
|
||||||
|
<record id="contract_abstract_contract_line_form_view" model="ir.ui.view">
|
||||||
|
<field name="name">Abstract Contract Line Form View</field>
|
||||||
|
<field name="model">contract.abstract.contract.line</field>
|
||||||
|
<field
|
||||||
|
name="inherit_id"
|
||||||
|
ref="contract.contract_abstract_contract_line_form_view"
|
||||||
|
/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//label[@for='quantity']" position="before">
|
||||||
|
<field name="qty_type" />
|
||||||
|
</xpath>
|
||||||
|
<xpath expr="//field[@name='quantity']" position="after">
|
||||||
|
<field
|
||||||
|
name="qty_formula_id"
|
||||||
|
attrs="{'required': [('qty_type', '=', 'variable')], 'invisible': [('qty_type', '!=', 'variable')]}"
|
||||||
|
/>
|
||||||
|
</xpath>
|
||||||
|
<xpath expr="//field[@name='quantity']" position="attributes">
|
||||||
|
<attribute name="attrs">{'required': [('qty_type', '=',
|
||||||
|
'fixed')], 'invisible': [('qty_type', '!=', 'fixed')]}
|
||||||
|
</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
30
contract_variable_quantity/views/contract.xml
Normal file
30
contract_variable_quantity/views/contract.xml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<odoo>
|
||||||
|
<record id="contract_contract_form_view" model="ir.ui.view">
|
||||||
|
<field name="model">contract.contract</field>
|
||||||
|
<field name="inherit_id" ref="contract.contract_contract_form_view" />
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//field[@name='code']" position="after">
|
||||||
|
<field name="skip_zero_qty" />
|
||||||
|
</xpath>
|
||||||
|
<xpath
|
||||||
|
expr="//field[@name='contract_line_ids']/tree/field[@name='quantity']"
|
||||||
|
position="before"
|
||||||
|
>
|
||||||
|
<field name="qty_type" />
|
||||||
|
<field
|
||||||
|
name="qty_formula_id"
|
||||||
|
attrs="{'invisible': [('qty_type', '!=', 'variable')]}"
|
||||||
|
/>
|
||||||
|
</xpath>
|
||||||
|
<xpath
|
||||||
|
expr="//field[@name='contract_line_ids']/tree/field[@name='quantity']"
|
||||||
|
position="attributes"
|
||||||
|
>
|
||||||
|
<attribute
|
||||||
|
name="attrs"
|
||||||
|
>{'invisible': [('qty_type', '!=', 'fixed')]}</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
85
contract_variable_quantity/views/contract_line_formula.xml
Normal file
85
contract_variable_quantity/views/contract_line_formula.xml
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<odoo>
|
||||||
|
<record id="view_contract_line_qty_formula_tree" model="ir.ui.view">
|
||||||
|
<field name="model">contract.line.qty.formula</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<tree>
|
||||||
|
<field name="name" />
|
||||||
|
</tree>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<record id="view_contract_line_qty_formula_form" model="ir.ui.view">
|
||||||
|
<field name="model">contract.line.qty.formula</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<form>
|
||||||
|
<sheet>
|
||||||
|
<div class="oe_title">
|
||||||
|
<h1>
|
||||||
|
<field name="name" placeholder="Name" />
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<group string="Code">
|
||||||
|
<div style="margin-top: 4px;">
|
||||||
|
<field
|
||||||
|
name="code"
|
||||||
|
nolabel="1"
|
||||||
|
widget="ace"
|
||||||
|
options="{'mode': 'python'}"
|
||||||
|
/>
|
||||||
|
<h3>Help with Python expressions.</h3>
|
||||||
|
<p>You have to insert valid Python code block that
|
||||||
|
stores at some moment a float/integer value of
|
||||||
|
the quantity to invoice in the variable
|
||||||
|
'result'.
|
||||||
|
</p>
|
||||||
|
<p>You can use these variables to compute your
|
||||||
|
formula:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><i>env</i>: Environment variable for
|
||||||
|
getting other models.
|
||||||
|
</li>
|
||||||
|
<li><i>context</i>: Current context dictionary.
|
||||||
|
</li>
|
||||||
|
<li><i>user</i>: Current user.
|
||||||
|
</li>
|
||||||
|
<li><i>line</i>: Contract recurring invoice
|
||||||
|
line that triggers this formula.
|
||||||
|
</li>
|
||||||
|
<li><i>contract</i>: Contract whose line
|
||||||
|
belongs to.
|
||||||
|
</li>
|
||||||
|
<li><i>invoice</i>: Invoice (header) being
|
||||||
|
created.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div>
|
||||||
|
<p>Example of Python code</p>
|
||||||
|
<code>
|
||||||
|
result =
|
||||||
|
env['product.product'].search_count([('sale_ok',
|
||||||
|
'=', True)])
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</group>
|
||||||
|
</sheet>
|
||||||
|
</form>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<record id="action_contract_quantity_formula" model="ir.actions.act_window">
|
||||||
|
<field name="name">Formulas (quantity)</field>
|
||||||
|
<field name="res_model">contract.line.qty.formula</field>
|
||||||
|
<field name="view_mode">tree,form</field>
|
||||||
|
<field name="help" type="html">
|
||||||
|
<p class="oe_view_nocontent_create">
|
||||||
|
Click to create a new formula for variable quantities.
|
||||||
|
</p>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<menuitem
|
||||||
|
id="menu_contract_quantity_formula"
|
||||||
|
action="action_contract_quantity_formula"
|
||||||
|
parent="contract.menu_config_contract"
|
||||||
|
/>
|
||||||
|
</odoo>
|
||||||
26
contract_variable_quantity/views/contract_line_views.xml
Normal file
26
contract_variable_quantity/views/contract_line_views.xml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<!-- Copyright 2019 Tecnativa - Pedro M. Baeza
|
||||||
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
||||||
|
<odoo>
|
||||||
|
<record id="contract_line_tree_view" model="ir.ui.view">
|
||||||
|
<field
|
||||||
|
name="name"
|
||||||
|
>contract.line tree view (in contract) - Add variable qty fields</field>
|
||||||
|
<field name="model">contract.line</field>
|
||||||
|
<field name="inherit_id" ref="contract.contract_line_tree_view" />
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<field name="quantity" position="before">
|
||||||
|
<field name="qty_type" />
|
||||||
|
<field
|
||||||
|
name="qty_formula_id"
|
||||||
|
attrs="{'invisible': [('qty_type', '!=', 'variable')]}"
|
||||||
|
/>
|
||||||
|
</field>
|
||||||
|
<field name="quantity" position="attributes">
|
||||||
|
<attribute
|
||||||
|
name="attrs"
|
||||||
|
>{'invisible': [('qty_type', '!=', 'fixed')]}</attribute>
|
||||||
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
33
contract_variable_quantity/views/contract_template.xml
Normal file
33
contract_variable_quantity/views/contract_template.xml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<odoo>
|
||||||
|
<record id="contract_template_form_view" model="ir.ui.view">
|
||||||
|
<field name="name">Contract Template Variable Qty</field>
|
||||||
|
<field name="model">contract.template</field>
|
||||||
|
<field name="inherit_id" ref="contract.contract_template_form_view" />
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath
|
||||||
|
expr="//field[@name='contract_line_ids']//field[@name='quantity']"
|
||||||
|
position="before"
|
||||||
|
>
|
||||||
|
<field name="qty_type" />
|
||||||
|
</xpath>
|
||||||
|
<xpath
|
||||||
|
expr="//field[@name='contract_line_ids']//field[@name='quantity']"
|
||||||
|
position="after"
|
||||||
|
>
|
||||||
|
<field
|
||||||
|
name="qty_formula_id"
|
||||||
|
attrs="{'required': [('qty_type', '=', 'variable')], 'invisible': [('qty_type', '!=', 'variable')]}"
|
||||||
|
/>
|
||||||
|
</xpath>
|
||||||
|
<xpath
|
||||||
|
expr="//field[@name='contract_line_ids']//field[@name='quantity']"
|
||||||
|
position="attributes"
|
||||||
|
>
|
||||||
|
<attribute
|
||||||
|
name="attrs"
|
||||||
|
>{'required': [('qty_type', '=', 'fixed')], 'invisible': [('qty_type', '!=', 'fixed')]}</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../../../../contract_variable_quantity
|
||||||
6
setup/contract_variable_quantity/setup.py
Normal file
6
setup/contract_variable_quantity/setup.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import setuptools
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
setup_requires=['setuptools-odoo'],
|
||||||
|
odoo_addon=True,
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user