Начальное наполнение
This commit is contained in:
parent
198c6c8d0e
commit
06d56323fe
4
__init__.py
Normal file
4
__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
21
__manifest__.py
Normal file
21
__manifest__.py
Normal file
@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': "Define Taxes as Python Code",
|
||||
'summary': "Use python code to define taxes",
|
||||
'description': """
|
||||
A tax defined as python code consists of two snippets of python code which are executed in a local environment containing data such as the unit price, product or partner.
|
||||
|
||||
"Applicable Code" defines if the tax is to be applied.
|
||||
|
||||
"Python Code" defines the amount of the tax.
|
||||
""",
|
||||
'category': 'Accounting/Accounting',
|
||||
'version': '1.0',
|
||||
'depends': ['account'],
|
||||
'data': [
|
||||
'views/account_tax_views.xml',
|
||||
],
|
||||
'license': 'LGPL-3',
|
||||
}
|
88
i18n/account_tax_python.pot
Normal file
88
i18n/account_tax_python.pot
Normal file
@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:55+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
109
i18n/af.po
Normal file
109
i18n/af.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/am.po
Normal file
109
i18n/am.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
120
i18n/ar.po
Normal file
120
i18n/ar.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - مجموعة الضرائب: الضريبة هي مجموعة من الضرائب الفرعية.\n"
|
||||
" - ثابتة: يبقى مبلغ الضريبة ثابتاً مهما كان السعر.\n"
|
||||
" - نسبة من السعر: مبلغ الضريبة هو نسبة مئوية من السعر:\n"
|
||||
" مثلاً 100 × (1 + 10%) = 110 (لا يشمل السعر)\n"
|
||||
" مثلاً 110 ÷ (1 + 10%) = 100 (السعر مشمول)\n"
|
||||
" - نسبة من السعر شامل الضريبة: مبلغ الضريبة هو جزء من السعر\n"
|
||||
" على سبيل المثال ، 180 ÷ (1 - 10%) = 200 (لا يشمل السعر)\n"
|
||||
" على سبيل المثال ، 200 × (1 - 10%) = 180 (السعر مشمول)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "كود قابل للتطبيق"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"قم باحتساب مبلغ الضريبة بإعداد المتغير 'النتيجة'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, المبلغ الفعلي الذي ستطبق عليه الضريبة\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"تحديد ما إذا كانت الضريبة ستُطبق من خلال ضبط قيمة المتغير 'result' بإحدى القيمتين صحيح أو خطأ.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "كود بايثون"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "الضريبة"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "حساب الضريبة"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"لقد قمت بإدخال كود غير صالح %r في %r ضرائب\n"
|
||||
"\n"
|
||||
"الخطأ: %s "
|
113
i18n/az.po
Normal file
113
i18n/az.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Piton Kodu"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Vergi"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Vergi hesablanması"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
119
i18n/bg.po
Normal file
119
i18n/bg.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Turhan Aydin <taydin@unionproject.eu>, 2023
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Група на данъците: Данъкът е съвкупност от подданъци.\n"
|
||||
"- Фиксиран: Сумата на данъка остава постоянна, независимо от цената.\n"
|
||||
"- Процент от цената: Сумата на данъка е % от цената:\n"
|
||||
"например 100 * (1 + 10%) = 110 (не включва цената)\n"
|
||||
"например 110 / (1 + 10%) = 100 (включва цената)\n"
|
||||
"- Процент от цената с включен данък: Сумата на данъка е деление на цената:\n"
|
||||
"например 180 / (1 - 10%) = 200 (не включва цената)\n"
|
||||
"например 200 * (1 - 10%) = 180 (включва цената)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Приложим код"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Изчислете размера на данъка, като зададете променливата величина \"резултат\".\n"
|
||||
"\n"
|
||||
": параметър base_amount: плаваща запетая, действителна сума, върху която се прилага данъкът\n"
|
||||
": параметър price_unit: плаваща запетая\n"
|
||||
": параметър количество: плаваща запетая\n"
|
||||
": параметър компания: res.company набор записи, единичен тон\n"
|
||||
": параметър продукт: product.product набор записи, единичен тон или нищо\n"
|
||||
": параметър контрагент: res.partner набор записи, единичен тон или нищо"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Определете дали данъкът ще бъде приложен чрез задаване на променливата величина \"резултат\" на 'Правилно' или 'Грешно'.\n"
|
||||
"\n"
|
||||
": параметър price_unit: плаваща запетая\n"
|
||||
": параметър количество: плаваща запетая\n"
|
||||
": параметър компания: res.company набор записи, единичен тон\n"
|
||||
": параметър продукт: product.product набор записи, единичен тон или нищо\n"
|
||||
": параметър контрагент: набор записи, единичен тон или нищо"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Код Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Данък"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Данъчна изчислителна система"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
113
i18n/bs.po
Normal file
113
i18n/bs.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python Kod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Porez"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Izračunavanje poreza"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Prijedlozi poreza"
|
120
i18n/ca.po
Normal file
120
i18n/ca.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Eugeni Chafer <eugeni@chafer.cat>, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
# AncesLatino2004, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: AncesLatino2004, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Grups d'impostos: l'impost és un conjunt de sub-impostos.\n"
|
||||
" - Fix: l'import de l'impost és sempre el mateix independent del preu.\n"
|
||||
" - Percentatge del preu: l'import de l'impost és un % del preu:\n"
|
||||
" p.e.. 100 * (1 + 10%) = 110 (preu no inclòs)\n"
|
||||
" p.e 110 / (1 + 10%) = 100 (preu inclòs)\n"
|
||||
" - Percentatge del preu amb l'impost inclosos: l'import és una fracció del preu :\n"
|
||||
" p.e 180 / (1 - 10%) = 200 (preu no inclòs)\n"
|
||||
" p.e 200 * (1 - 10%) = 180 (preu inclòs)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Codi aplicable"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calculeu l'import de l'impost configurant la variable 'resultat'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, import real sobre el qual s'aplica l'impost\n"
|
||||
":param price_unit: flotant\n"
|
||||
":param quantitat: flotant\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton o Cap\n"
|
||||
":param partner: res.partner recordset singleton o Cap"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determineu si s'aplicarà l'impost establint la variable \"resultat\" a Vertader o Fals.\n"
|
||||
"\n"
|
||||
":param price_unit: flotant\n"
|
||||
":param quantitat: flotant\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton o Cap\n"
|
||||
":param partner: res.partner recordset singleton o Cap"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Codi Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Impost"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Càlcul d'impostos"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
122
i18n/cs.po
Normal file
122
i18n/cs.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2023
|
||||
# Ivana Bartonkova, 2023
|
||||
# Tomáš Píšek, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tomáš Píšek, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Skupina daní: Daň je soubor dílčích daní.\n"
|
||||
"- Pevná: Výše daně zůstává stejná nezávisle na ceně.\n"
|
||||
"- Procento z ceny: Výše daně je % z ceny:\n"
|
||||
"například 100 * (1 + 10%) = 110 (bez zahrnutí v ceně)\n"
|
||||
"například 110 / (1 + 10%) = 100 (se zahrnutím v ceně)\n"
|
||||
"Daň zahrnuta v ceně: Částka daně je zahrnuta v celkové ceně:\n"
|
||||
"například 180 / (1 - 10%) = 200 (bez zahrnutí v ceně)\n"
|
||||
"například 200 * (1 - 10%) = 180 (se zahrnutím v ceně)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Aplikovatelný kód"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Vypočíst částku daně nastavením proměnné 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, skutečná částka, na kterou se daň vztahuje\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton nebo None\n"
|
||||
":param partner: res.partner singleton nebo None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Určuje, zda bude daň použita nastavením proměnné 'result' na True nebo False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton nebo None\n"
|
||||
":param partner: res.partner recordset singleton nebo None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kód"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Daň"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Výpočet daně"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Použili jste neplatný kód %r pro daň %r\n"
|
||||
"\n"
|
||||
"Chyba : %s"
|
116
i18n/da.po
Normal file
116
i18n/da.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Momsgrupper: Momsen udgøres af et sæt af momsgrupper.\n"
|
||||
"- Fast: Momsen forbliver den samme uanset prisen.\n"
|
||||
"- Procentsats: Momsen er en procentdel af prisen:\n"
|
||||
" F.eks.: 100 * 10% = 100 (pris ikke inkluderet)\n"
|
||||
" F.eks.: 110 / (1 + 10%) = 100 (pris inkluderet)\n"
|
||||
"- Procent af pris moms inkluderet: Momsen er en del af prisen:\n"
|
||||
" F.eks.: 180 / (1 - 10%) = 200 (pris ikke inkluderet)\n"
|
||||
" F.eks.: 200 * (1 - 10%) = 180 (pris inkluderet)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Brugbar kode"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Udregn mængden af moms ved at angive variablen 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: decimaltal, faktisk mængde hvorpå moms skal anvendes\n"
|
||||
":param price_unit: decimaltal\n"
|
||||
":param quantity: decimaltal\n"
|
||||
":param company: res.company datasæt singleton\n"
|
||||
":param product: product.product datasæt singleton eller None\n"
|
||||
":param partner: res.partner datasæt singleton eller None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Afgør om moms vil blive anvendt ved at angive variablen 'result' til Sandt eller Falsk.\n"
|
||||
"\n"
|
||||
":param price_unit: decimaltal\n"
|
||||
":param quantity: decimaltal\n"
|
||||
":param company: res.company datasæt singleton\n"
|
||||
":param product: product.product datasæt singleton eller None\n"
|
||||
":param partner: res.partner datasæt singleton eller None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kode"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Moms"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Momsberegning"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
119
i18n/de.po
Normal file
119
i18n/de.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Steuergruppen: Die Steuer ist eine Gruppe von Untersteuern.\n"
|
||||
"- Fest: Der Steuerbetrag bleibt unabhängig vom Preis gleich.\n"
|
||||
"- Prozentsatz des Preises: Der Steuerbetrag ist ein Prozentsatz des Preises:\n"
|
||||
" z. B. 100 * (1 + 10 %) = 110 (nicht im Preis enthalten)\n"
|
||||
" z. B. 110 / (1 + 10 %) = 100 (im Preis enthalten)\n"
|
||||
"- Prozentsatz des Preises inkusive Steuern: Der Steuerbetrag ist eine Division des Preises:\n"
|
||||
" z. B. 180 / (1 - 10 %) = 200 (nicht im Preis enthalten)\n"
|
||||
" z. B. 200 * (1 - 10 %) = 180 (im Preis enthalten)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Anwendbarer Code"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Berechnen Sie den Steuerbetrag durch setzen der Variable „result“.\n"
|
||||
"\n"
|
||||
":param base_amount: Gleitkommazahl, tatsächlicher Betrag, auf den die Steuer angewendet wird\n"
|
||||
":param price_unit: Gleitkommazahl\n"
|
||||
":param quantity: Gleitkommazahl\n"
|
||||
":param company: res.company-Datensatz singleton\n"
|
||||
":param product: product.product-Datensatz singleton oder keiner\n"
|
||||
":param partner: res.partner-Datensatz singleton oder keiner"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Bestimmen Sie, ob die Steuer angewendet wird, durch setzen der Variable „result“ auf True oder False.\n"
|
||||
"\n"
|
||||
":param price_unit: Gleitkommazahl\n"
|
||||
":param quantity: Gleitkommazahl,\n"
|
||||
":param company: res.company-Datensatz singleton\n"
|
||||
":param product: product.product-Datensatz singleton oder keiner\n"
|
||||
":param partner: res.partner-Datensatz singleton oder keiner"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python-Code"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Steuer"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Steuerberechnung"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Sie haben einen ungültigen Code %r in Steuern %r eingegeben\n"
|
||||
"\n"
|
||||
"Fehler: %s"
|
113
i18n/el.po
Normal file
113
i18n/el.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Εφαρμόσιμος Κωδικός"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Φόρος"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Υπολογισμός Φόρου"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Πρότυπα για Φόρους"
|
109
i18n/en_GB.po
Normal file
109
i18n/en_GB.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
120
i18n/es.po
Normal file
120
i18n/es.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"Grupo de impuestos: el impuesto es un conjunto de sub impuestos.\n"
|
||||
" - Fijo: el importe del impuesto permanece igual independientemente del precio.\n"
|
||||
" - Porcentaje del precio: el monto del impuesto es un % del precio:\n"
|
||||
" Por ejemplo, 100 * (1 + 10%) = 110 (sin precio incluido)\n"
|
||||
" por ejemplo, 110 / (1 + 10%) = 100 (precio incluido)\n"
|
||||
" - Porcentaje del precio impuesto incluido: El monto del impuesto es una división del precio:\n"
|
||||
" Por ejemplo, 180 / (1 - 10%) = 200 (sin precio incluido)\n"
|
||||
" Por ejemplo, 200 * (1-10%) = 180 (precio incluido)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Código aplicable"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calcula el importe del impuesto estableciendo la variable 'result'.\n"
|
||||
"\n"
|
||||
":parámetro base_amount: número con decimales, importe real sobre el que el impuesto se aplica\n"
|
||||
":parámetro price_unit: número con decimales\n"
|
||||
":parámetro quantity: número con decimales\n"
|
||||
":parámetro company: recordset unitario de res.company\n"
|
||||
":parámetro product: recordset unitario de product.product o None\n"
|
||||
":parámetro partner: recordset unitario de res.partner o None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determina si el impuesto será aplicado estableciendo la variable 'result' a True o False.\n"
|
||||
"\n"
|
||||
":parámetro price_unit: número con decimales\n"
|
||||
":parámetro quantity: número con decimales\n"
|
||||
":parámetro company: recordset unitario de res.company\n"
|
||||
":parámetro product: recordset unitario de product.product o None\n"
|
||||
":parámetro partner: recordset unitario de res.partner o None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Impuesto"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Cálculo de impuestos"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Ingresó el código %r que no es válido en los impuestos %r \n"
|
||||
"\n"
|
||||
"Error: %s"
|
120
i18n/es_419.po
Normal file
120
i18n/es_419.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Grupo de impuestos: el impuesto es un conjunto de subimpuestos.\n"
|
||||
" - Fijo: el importe del impuesto se mantiene igual sin importar el precio.\n"
|
||||
" - Porcentaje del precio: el valor del impuesto es un % del precio:\n"
|
||||
" Por ejemplo, 100 * (1 + 10%) = 110 (sin precio incluido)\n"
|
||||
" Por ejemplo, 110 / (1 + 10%) = 100 (precio incluido)\n"
|
||||
" - Porcentaje del precio del impuesto incluido: el valor del impuesto es una división del precio:\n"
|
||||
" Por ejemplo, 180 / (1 - 10%) = 200 (sin precio incluido)\n"
|
||||
" Por ejemplo, 200 * (1-10%) = 180 (precio incluido)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Código aplicable"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calcule el importe del impuesto estableciendo la variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, importe real sobre el se aplica el impuesto\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determina si el impuesto será aplicado estableciendo la variable 'result' a Verdadero o Falso.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Impuesto"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Cálculo de impuestos"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Ingresó el código %r que no es válido en los impuestos %r \n"
|
||||
"\n"
|
||||
"Error: %s"
|
109
i18n/es_BO.po
Normal file
109
i18n/es_BO.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"Language: es_BO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_CL.po
Normal file
109
i18n/es_CL.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_CO.po
Normal file
109
i18n/es_CO.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_CR.po
Normal file
109
i18n/es_CR.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_DO.po
Normal file
109
i18n/es_DO.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_EC.po
Normal file
109
i18n/es_EC.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_PE.po
Normal file
109
i18n/es_PE.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_PY.po
Normal file
109
i18n/es_PY.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/es_VE.po
Normal file
109
i18n/es_VE.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
106
i18n/et.po
Normal file
106
i18n/et.po
Normal file
@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Patrick-Jordan Kiudorv, 2023
|
||||
# Egon Raamat <egon@avalah.ee>, 2023
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Eneli Õigus <enelioigus@gmail.com>, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Maksude kogum: Maks on komplekt alamaksudest.\n"
|
||||
" - Määratud: Maksumäär ei sõltu hinnast.\n"
|
||||
" - Protsent Hinnast: Maksu määr on % hinnast:\n"
|
||||
" nt. 100 * (1 + 10%) = 110 (ilma hinnata)\n"
|
||||
" nt. 110 / (1 + 10%) = 100 (koos hinnaga)\n"
|
||||
" - Hinna maksu % juurde arvestatud: Maksu määr on hinna jagatis:\n"
|
||||
" nt. 180 / (1 - 10%) = 200 (ilma hinnata)\n"
|
||||
" nt. 200 * (1 - 10%) = 180 (koos hinnaga)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Rakendatav kood"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr "Arvutage maksusumma, määrates muutuja \"tulemus\"."
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Määrake, kas lisatakse maks, määrates muutuja \"tulemus\" tõeseks või "
|
||||
"vääraks."
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Pythoni kood"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Tulumaks"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Maksuarvutus"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
109
i18n/eu.po
Normal file
109
i18n/eu.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
104
i18n/fa.po
Normal file
104
i18n/fa.po
Normal file
@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"-گروه مالیات ها: مالیاتی که از زیر مجموعه هایی از مالیات هاست.\n"
|
||||
"-ثابت: مقدار مالیات ثابت است صرف نظر از قیمت.\n"
|
||||
"-درصد قیمت: مقدار مالیات درصدی از قیمت است:\n"
|
||||
" مثال: 100 * (1 + 10%) = 110 (شامل قیمت نمیشود)\n"
|
||||
" مثال: 110 / (1 + 10٪) = 100 (شامل قیمت میشود)\n"
|
||||
"-درصد قیمت در مالیات شامل شده است: مقدار مالیات حاصل تقسیمی از قیمت است:\n"
|
||||
" مثال: 180 / (1 - 10٪) = 200 (شامل قیمت نمیشود)\n"
|
||||
" مثال: 200 * (1 - 10٪) = 180 (شامل قیمت میشود)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "کد قابل اعمال"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "کد پایتون"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "مالیات"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "محاسبه مالیات"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
122
i18n/fi.po
Normal file
122
i18n/fi.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Mikko Salmela <salmemik@gmail.com>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Verojen ryhmä: Vero koostuu joukosta alaveroja.\n"
|
||||
" - Kiinteä: Veron määrä pysyy samana hinnasta riippumatta.\n"
|
||||
" - Prosenttiosuus hinnasta: veron määrä on % hinnasta:\n"
|
||||
" esim. 100 * (1 + 10%) = 110 (ei sisällä hintaa)\n"
|
||||
" esim. 110 / (1 + 10%) = 100 (sisältää hinnan)\n"
|
||||
" - Prosenttiosuus hinnasta vero huomioiden: veron määrä on jako-osuus hinnasta:\n"
|
||||
" esim. 180 / (1 - 10%) = 200 (ei sisällä hintaa)\n"
|
||||
" esim. 200 * (1 - 10%) = 180 (sisältää hinnan) "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Soveltuva koodi"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Laske veron määrä asettamalla muuttuja \"result\".\n"
|
||||
"\n"
|
||||
":param base_amount: float, todellinen määrä, johon veroa sovelletaan\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton tai None\n"
|
||||
":param partner: res.partner recordset singleton tai None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Määritä, sovelletaanko veroa asettamalla muuttujan 'result' arvoksi True tai False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton tai None\n"
|
||||
":param partner: res.partner recordset singleton tai None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python-koodi"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Vero"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Verojen laskenta"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Syötit virheellisen koodin %r käsiteltäessä %r veroja\n"
|
||||
"\n"
|
||||
"Virhe : %s"
|
109
i18n/fo.po
Normal file
109
i18n/fo.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
120
i18n/fr.po
Normal file
120
i18n/fr.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Groupe de taxes : la taxe est un ensemble de sous-taxes.\n"
|
||||
"- Fixe : le montant de la taxe est fixe quel que soit le prix.\n"
|
||||
"- Pourcentage du prix : la taxe est proportionnelle au prix :\n"
|
||||
" par ex. 100 * (1+10%) = 110 (prix exprimé HT)\n"
|
||||
" par ex. 110 / (1+10%) = 100 (prix exprimé TTC)\n"
|
||||
"- Pourcentage du prix toutes taxes comprises : le montant de la taxe est une division du prix\n"
|
||||
" par ex. 180 / (1 - 10%) = 200 (prix exprimé HT)\n"
|
||||
" par ex. 200 * (1 - 10%) = 180 (prix exprimé TTC)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Code applicable"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calculer le montant de la taxe en retournant la variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: nombre flottant, montant réel sur lequel la taxe est appliquée\n"
|
||||
":param price_unit: nombre flottant\n"
|
||||
":param quantity: nombre flottant\n"
|
||||
":param company: enregistrement de res.company\n"
|
||||
":param product: enregistrement de product.product ou None\n"
|
||||
":param partner: enregistrement de res.partner ou None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Déterminer si la taxe sera appliquée en retournant la variable 'result' à Vrai ou Faux.\n"
|
||||
"\n"
|
||||
":param price_unit: nombre flottant\n"
|
||||
":param quantity: nombre flottant\n"
|
||||
":param company: enregistrement de res.company\n"
|
||||
":param product: enregistrement de product.product ou None\n"
|
||||
":param partner: enregistrement de res.partner ou None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Code Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Taxe"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Calcul de la taxe"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Vous avez saisi un code invalide %r dans %r taxes\n"
|
||||
"\n"
|
||||
"Erreur : %s"
|
109
i18n/fr_CA.po
Normal file
109
i18n/fr_CA.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/gl.po
Normal file
109
i18n/gl.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
123
i18n/gu.po
Normal file
123
i18n/gu.po
Normal file
@ -0,0 +1,123 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Tax"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Tax Computation"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Templates for Taxes"
|
92
i18n/he.po
Normal file
92
i18n/he.po
Normal file
@ -0,0 +1,92 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "קוד פייתון"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "מס"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "חישוב מס"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
154
i18n/hr.po
Normal file
154
i18n/hr.po
Normal file
@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Otročak <jasmina@uvid.hr>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/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: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Grupa poreza: Porez se računa iz podređenih poreza.\n"
|
||||
" - Fiksno: Iznos poreza je uvijek isti bez obzira na cijenu.\n"
|
||||
" - Postotak cijene: Iznos poreza je postotak cijene:\n"
|
||||
" npr. 100 * (1 + 10%) = 110 (porez nije uključen u cijeni)\n"
|
||||
" npr. 110 / (1 + 10%) = 100 (porez je uključen u cijenu)\n"
|
||||
" - Postotak cijene sa uključenim porezom: porez je iznos dijeljenja postotkom:\n"
|
||||
" npr. 180 / (1 - 10%) = 200 (porez nije uključen u cijenu)\n"
|
||||
" npr. 200 * (1 - 10%) = 180 (porez je uključen u cijenu)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Primjenjiva šifra"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Izračun iznosa poreza korištenjem varijable 'result'.\n"
|
||||
"\n"
|
||||
":parametar base_amount: decimalni broj, iznos osnovice na koju se primjenjuje porez\n"
|
||||
":parametar price_unit: decimalni broj\n"
|
||||
":parametar quantity: decimalni broj\n"
|
||||
":parametar company: res.company zapis tablice\n"
|
||||
":parametar product: product.product zapis tablice ili None\n"
|
||||
":parametar partner: res.partner zapis tablice ili None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Izračun poreza korištenjem varijable 'result'.\n"
|
||||
"\n"
|
||||
":parametar base_amount: decimalni broj, iznos osnovice na koju se primjenjuje porez\n"
|
||||
":parametar price_unit: decimalni broj\n"
|
||||
":parametar quantity: decimalni broj\n"
|
||||
":parametar product: product.product zaps tablice ili None\n"
|
||||
":parametar partner: res.partner zapis tablice ili None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Odlučuje hoće li se porez primjeniti postavljanjem varijable 'result' na True ili False.\n"
|
||||
"\n"
|
||||
":parametar price_unit: decimalni broj\n"
|
||||
":parametar: quantity: decimalni broj\n"
|
||||
":parametar company: res.company zapis tablice\n"
|
||||
":parametar product: product.product zapis tablice ili None\n"
|
||||
":parametar partner: res.partner zapis tablice ili None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Odlučuje hoće li se porez primjeniti postavljanjem varijable 'resutl' na True ili False.\n"
|
||||
"\n"
|
||||
":parametar price_unit: decimalni broj\n"
|
||||
":parametar quantity: decimalni broj\n"
|
||||
":parametar product: product.product zapis tablice ili None\n"
|
||||
":parametar partner: res.partner zapis tablice ili None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Porez"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Izračun poreza"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Predlošci poreza"
|
118
i18n/hu.po
Normal file
118
i18n/hu.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Pammer József, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# krnkris, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: krnkris, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Adó csoport: Az adó részadók halmaza.\n"
|
||||
"- Rögzített: Az adó összege ugyan az marad minden ár esetén.\n"
|
||||
"- Ár százaléka: Az adó összege az ár megadott százalékából:\n"
|
||||
" pl.: 100 * (1 + 10%) = 110 (Az ár nem tartalmazza)\n"
|
||||
" pl.: 110 / ( 1 + 10%) = 100 (Az ár tartalmazza)\n"
|
||||
"- Az ár százalékosan tartalmazza az adó-t: Az adó összege az ár hányada:\n"
|
||||
" pl.: 180 / (1 - 10%) = 200 (Az ár nem tartalmazza)\n"
|
||||
" pl.: 200 * (1 - 10%) = 180 (Az ár tartalmazza)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Alkalmazható kód"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Adó összegének kiszámítása az 'eredmény' változó beállításával.\n"
|
||||
"\n"
|
||||
":param base_amount: lebegőpontos, aktuális összeg melyre az adót alkalmaztuk\n"
|
||||
":param price_unit: lebegőpontos\n"
|
||||
":param quantity: lebegőpontos\n"
|
||||
":param company: res.company recordset egyetlen\n"
|
||||
":param product: product.product recordset egyetlen vagy semmi\n"
|
||||
":param partner: res.partner recordset egyetlen vagy semmi"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Adó alkalmazásának meghatározása az 'eredmény' változó Igaz vagy Hamis beállításától függően.\n"
|
||||
"\n"
|
||||
":param price_unit: lebegőpontos\n"
|
||||
":param quantity: lebegőpontos\n"
|
||||
":param company: res.company recordset egyetlen\n"
|
||||
":param product: product.product recordset egyetlen vagy Semmi\n"
|
||||
":param partner: res.partner recordset egyetlen vagy Semmi"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kód"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Adó"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Adó kiszámítás"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
120
i18n/id.po
Normal file
120
i18n/id.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Kelompok Pajak: Pajak adalah satu set sub pajak.\n"
|
||||
" - Tetap: Jumlah pajak tetap sama berapa pun harganya.\n"
|
||||
" - Persentase Harga: Jumlah pajak adalah % dari harga:\n"
|
||||
" misal: 100 * (1 + 10%) = 110 (tidak termasuk harga)\n"
|
||||
" misal: 110 / (1 + 10%) = 100 (termasuk harga)\n"
|
||||
" - Persentase Termasuk Pajak Harga: Jumlah pajak adalah pembagian harga:\n"
|
||||
" misal: 180 / (1 - 10%) = 200 (tidak termasuk harga)\n"
|
||||
" misal: 200 * (1 - 10%) = 180 (termasuk harga)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Kode yang Berlaku"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Hitung jumlah pajak dengan mengatur variabel 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Tentukan jika pajak akan diterapkan dengan mengatur variabel 'result' ke True atau False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Kode Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Pajak"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Penghitungan Pajak"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Anda memasukkan kode yang tidak vlaid %r di pajak %r\n"
|
||||
"\n"
|
||||
"Error : %s"
|
109
i18n/is.po
Normal file
109
i18n/is.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\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);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "VSK"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Tax Computation"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Templates for Taxes"
|
120
i18n/it.po
Normal file
120
i18n/it.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Gruppo di imposte: l'imposta corrisponde a una serie di sottoimposte.\n"
|
||||
" - Fisso: l'importo imposta rimane uguale e indipendente dal prezzo.\n"
|
||||
" - Percentuale sul prezzo: l'importo imposta è una % del prezzo:\n"
|
||||
" es. 100 * (1 + 10%) = 110 (prezzo non incluso)\n"
|
||||
" es. 110 / (1 + 10%) = 100 (prezzo incluso)\n"
|
||||
" - Percentuale sul prezzo imposta inclusa: l'importa imposta è una frazione del prezzo:\n"
|
||||
" es. 180 / (1 - 10%) = 200 (prezzo non incluso)\n"
|
||||
" es. 200 * (1 - 10%) = 180 (prezzo incluso)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Codice applicabile"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calcola l'importo dell'imposta impostando la variabile \"risultato\".\n"
|
||||
"\n"
|
||||
":param base_amount: a virgola mobile, importo effettivo a cui viene applicata l'imposta\n"
|
||||
":param price_unit: a virgola mobile\n"
|
||||
":param quantity: a virgola mobile\n"
|
||||
":param company: singolo elemento di un insieme di record res.company\n"
|
||||
":param product: singolo elemento di un insieme di record product.product oppure nessuno\n"
|
||||
":param partner: singolo elemento di un insieme di record res.partner oppure nessuno"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determina se l'imposta viene applicata impostando la variabile \"risultato\" a vero o falso.\n"
|
||||
"\n"
|
||||
":param price_unit: a virgola mobile\n"
|
||||
":param quantity: a virgola mobile\n"
|
||||
":param company: singolo elemento di un insieme di record res.company\n"
|
||||
":param product: singolo elemento di un insieme di record product.product oppure nessuno\n"
|
||||
":param partner: singolo elemento di un insieme di record res.partner oppure nessuno"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Codice Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Imposta"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Calcolo imposta"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Codice inserito %r non valido per le imposte %r\n"
|
||||
"\n"
|
||||
"Errore : %s"
|
119
i18n/ja.po
Normal file
119
i18n/ja.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"-税金グループ: 他のより細かい税が含まれています。\n"
|
||||
"-固定: 税額は価格に関係なく同額です。\n"
|
||||
"-外税率: 税額は価格に基づいて、比率で加算されます:\n"
|
||||
"例: 100 *(1 + 10%)= 110 (課税後の価格)\n"
|
||||
"例: 110 /(1 + 10%)= 100 (課税前の価格)\n"
|
||||
"-内税率: 税額は価格に含まれています:\n"
|
||||
"例: 180 / (1-10%) = 200 (課税後の価格)\n"
|
||||
"例: 200 * (1-10%) = 180 (課税前の価格)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "適用可能なコード"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"変数'result'を設定して税額を計算します。\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"変数'result'をTrueまたはFalseに設定することで、税金が適用されるかどうかを決定します。\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Pythonコード"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "税"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "税計算"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"無効なコード%r が%r 税に入力されました。\n"
|
||||
"\n"
|
||||
"エラー: %s"
|
109
i18n/ka.po
Normal file
109
i18n/ka.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/kab.po
Normal file
109
i18n/kab.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
111
i18n/kk.po
Normal file
111
i18n/kk.po
Normal file
@ -0,0 +1,111 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:04+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Салық"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/km.po
Normal file
109
i18n/km.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
120
i18n/ko.po
Normal file
120
i18n/ko.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - 세금 그룹: 하위 세금 항목을 그룹으로 묶은 것입니다.\n"
|
||||
" - 고정액: 가격과 무관한 일정 금액으로 세금을 설정합니다.\n"
|
||||
" - 가격 대비 금액: 가격의 일정 비율로 세금을 계산합니다:\n"
|
||||
" 예: 100 * (1 + 10%) = 110 (가격에 미포함)\n"
|
||||
" 예: 110 / (1 + 10%) = 100 (가격에 포함)\n"
|
||||
" - 세금 포함가 대비 금액: 가격을 나눈 금액으로 세금을 계산합니다:\n"
|
||||
" 예: 180 / (1 - 10%) = 200 (가격에 미포함)\n"
|
||||
" 예: 200 * (1 - 10%) = 180 (가격에 포함)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "적용 코드"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"변수 'result'를 설정하여 세금 금액을 계산하십시오.\n"
|
||||
"\n"
|
||||
":param base_amount: float, 세금이 적용되는 실제 금액\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"변수 'result'를 True 또는 False로 설정하여 세금 적용 여부를 결정하십시오.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "파이썬 코드"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "세금"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "세금 계산"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"세금 %r에 잘못된 코드 %r를 입력했습니다\n"
|
||||
"\n"
|
||||
"오류 : %s"
|
109
i18n/lb.po
Normal file
109
i18n/lb.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:08+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
109
i18n/lo.po
Normal file
109
i18n/lo.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
108
i18n/lt.po
Normal file
108
i18n/lt.po
Normal file
@ -0,0 +1,108 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Pritaikomas kodas"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Skaičiuoti mokesčio dydį nustatant 'result' kintamąjį.\n"
|
||||
"\n"
|
||||
":param base_amount: float, tikroji suma, kuriai taikomas mokestis\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton arba None\n"
|
||||
":param partner: res.partner recordset singleton arba None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Nuspręskite, ar mokestis bus taikomas, nustatydami kintamojo \"result\" reikšmę kaip teigiamą arba neigiamą.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton arba None\n"
|
||||
":param partner: res.partner recordset singleton arba None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kodas"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Mokesčiai"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Mokesčių apskaičiavimas"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
104
i18n/lv.po
Normal file
104
i18n/lv.po
Normal file
@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Kristine Timoskina <kristine.timoskina@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Kristine Timoskina <kristine.timoskina@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"Nodokļu grupa: nodoklis ir apakšnodokļu kopums.\n"
|
||||
"- Fiksēts: Nodokļa summa nemainās neatkarīgi no cenas.\n"
|
||||
"- Cenas procentuālā daļa: Nodokļa summa ir% no cenas:\n"
|
||||
"piem., 100 * (1 + 10%) = 110 (bez cenas)\n"
|
||||
"piem., 110 / (1 + 10%) = 100 (iekļauta cena)\n"
|
||||
"- Cenā iekļautā procentuālā daļa: nodokļa summa ir cenas dalījums:\n"
|
||||
"piemēram, 180 / (1 - 10%) = 200 (nav iekļauta cena)\n"
|
||||
"piem., 200 * (1 - 10%) = 180 (iekļauta cena)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Attiecināmais kods"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kods"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Nodoklis"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Nodokļu aprēķins"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
109
i18n/mk.po
Normal file
109
i18n/mk.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
153
i18n/mn.po
Normal file
153
i18n/mn.po
Normal file
@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Ganbaatar Buriad <Ganbaatar@asterisk-tech.mn>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Татварын бүлэг: Татвар нь дэд татваруудын нийлбэрээр тодорхойлогдоно.\n"
|
||||
" - Тотмол: Үнэ ямар байхаас үл хамааран тогтмол дүнгээр татвар тооцно.\n"
|
||||
" - Үнийн дүнгээс хувилах: Татвар нь үнийн дүнгийн тодорхой хувиар тооцогдоно:\n"
|
||||
" ж.ш 100 * (1 + 10%) = 110 (үнийн дүнд шингээгүй)\n"
|
||||
" ж.ш 110 / (1 + 10%) = 100 (үнийн дүнд шингэсэн)\n"
|
||||
" - Татвартай үнийн дүнгээс хувилах: Татвар нь үнийн дүнгийн хуваагдагч болно:\n"
|
||||
" ж.ш 180 / (1 - 10%) = 200 (үнийн дүнд шингээгүй)\n"
|
||||
" ж.ш 200 * (1 - 10%) = 180 (үнийн дүнд шингэсэн)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Хэрэглэх боломжит Код"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"'result' хувьсагчийг тохируулж татварын дүнг тооцоолох.\n"
|
||||
"\n"
|
||||
":param base_amount: float, татварыг тооцох бодит дүн\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton эсвэл None\n"
|
||||
":param partner: res.partner recordset singleton эсвэл None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"'result' хувьсагчийг тохируулж татварын дүнг тооцоолох.\n"
|
||||
"\n"
|
||||
":param base_amount: float, татварыг тооцох бодит дүн\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton эсвэл None\n"
|
||||
":param partner: res.partner recordset singleton эсвэл None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"'result' хувьсагчийг True эсвэл False болгож татвар тооцох эсэхийг тодорхойлох.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton эсвэл None\n"
|
||||
":param partner: res.partner recordset singleton эсвэл None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"'result' хувьсагчийг True эсвэл False болгож татвар тооцох эсэхийг тодорхойлох.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton эсвэл None\n"
|
||||
":param partner: res.partner recordset singleton эсвэл None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python код"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Татвар"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Татвар тооцоолол"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Татварын загварууд"
|
114
i18n/nb.po
Normal file
114
i18n/nb.po
Normal file
@ -0,0 +1,114 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python-kode"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Avgift"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Maler for skatter og avgifter"
|
109
i18n/ne.po
Normal file
109
i18n/ne.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
120
i18n/nl.po
Normal file
120
i18n/nl.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Groep van BTW's: de BTW is een set van sub BTW's.\n"
|
||||
" - Vast: Het BTW bedrag is gelijk ongeacht de prijs.\n"
|
||||
" - Percentage van prijs: Het BTW bedrag is een percentage van de prijs:\n"
|
||||
" Bijv. 100 * (1 + 10%) = 110 (niet inbegrepen in de prijs)\n"
|
||||
" Bijv. 110 / (1 + 10%) = 100 (Percentage van de prijs)\n"
|
||||
" - Percentage van de prijs is inclusief BTW: Het BTW bedrag is een gedeelte van de prijs:\n"
|
||||
" Bijv. 180 / (1 - 10%) = 200 (exclusief BTW)\n"
|
||||
" Bijv. 200 * (1 - 10%) = 180 (inclusief BTW)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Toepasbare code"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Bereken het bedrag van de BTW door de variabele 'result' in te stellen.\n"
|
||||
"\n"
|
||||
":param base_amount: float, het werkelijke bedrag waarover de BTW berekend wordt\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton of None\n"
|
||||
":param relatie: res.relatie recordset singleton of None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Bepaal of de BTW zal toegepast worden door de variabele 'result' op True of False te plaatsen.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton of None\n"
|
||||
":param relatie: res.relatie recordset singleton of None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python code"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "BTW"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "BTW berekening"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Je hebt een ongeldige code %r ingevoerd in %r btw's\n"
|
||||
"\n"
|
||||
"Fout : %s"
|
119
i18n/pl.po
Normal file
119
i18n/pl.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Grupa podatków: Podatek jest zbiorem podatków cząstkowych.\n"
|
||||
"- Stały: Kwota podatku pozostaje taka sama niezależnie od ceny.\n"
|
||||
"- Procent ceny: Kwota podatku jest % ceny:\n"
|
||||
"np. 100 * (1 + 10%) = 110 (bez ceny)\n"
|
||||
"np. 110 / (1 + 10%) = 100 (cena wliczona)\n"
|
||||
"- Procent ceny wliczony w cenę: Kwota podatku jest podziałem ceny:\n"
|
||||
"np. 180 / (1 - 10%) = 200 (bez ceny wliczonej)\n"
|
||||
"np. 200 * (1 - 10%) = 180 (cena wliczona)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Odpowiedni kod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Obliczyć kwotę podatku przez ustawienie zmiennej \"wynik\".\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Ustal, czy podatek będzie stosowany przez ustawienie zmiennej \"wynik\" True lub False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Kod Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Podatek"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Obliczenie podatku"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Wprowadzono nieprawidłowy kod %r w %r podatkach\n"
|
||||
"\n"
|
||||
"Błąd : %s"
|
117
i18n/pt.po
Normal file
117
i18n/pt.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Grupo de Imposto: O imposto é um conjunto de impostos secundários.\n"
|
||||
" - Fixo: O valor do imposto é o mesmo independentemente do preço.\n"
|
||||
" - Percentagem do Preço: O valor do imposto é uma percentagem do preço:\n"
|
||||
" ex. 100 * (1 + 10%) = 110 (preço não incluído)\n"
|
||||
" ex. 110 / (1 + 10%) = 100 (preço incluído)\n"
|
||||
" - Percentagem do Preço com Imposto Incluído: O valor do imposto está incluído no preço:\n"
|
||||
" ex. 180 / (1 - 10%) = 200 (preço não incluído)\n"
|
||||
" ex. 200 * (1 - 10%) = 180 (preço incluído)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Código Aplicável"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calcula o montante de imposto ao ajustar a variável 'result'\n"
|
||||
"\n"
|
||||
":param base_amount: float, montante actual sbro o qual o imposto é aplicado\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determina se o imposto será aplicado ao ajustar a variável 'result' para Verdadeiro ou Falso.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Imposto"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Cálculo de Imposto"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
120
i18n/pt_BR.po
Normal file
120
i18n/pt_BR.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Grupo de impostos: o imposto é um conjunto de sub impostos.\n"
|
||||
" - Fixo: o valor do imposto permanece o mesmo seja qual for o preço.\n"
|
||||
" - Porcentagem do preço: o valor do imposto é uma % do preço:\n"
|
||||
" ex: 100 * (1 + 10%) = 110 (não incluído no preço)\n"
|
||||
" ex: 110 / (1 + 10%) = 100 (incluído no preço)\n"
|
||||
" - Porcentagem do preço com imposto incluído: O valor do imposto é uma divisão do preço:\n"
|
||||
" ex: 180 / (1 - 10%) = 200 (não incluído no preço)\n"
|
||||
" ex: 200 * (1 - 10%) = 180 (incluído no preço)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Código aplicável"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calcular o valor do imposto definindo a variável 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, valor real em que é aplicado o imposto\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton ou None\n"
|
||||
":param partner: res.partner recordset singleton ou None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determinar se o imposto será aplicado definindo a variável 'result' como verdadeiro ou falso.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton ou None\n"
|
||||
":param partner: res.partner recordset singleton ou None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Imposto"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Cálculo de Impostos"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Você inseriu um código inválido %r em %r impostos\n"
|
||||
"\n"
|
||||
"Erro: %s"
|
153
i18n/ro.po
Normal file
153
i18n/ro.po
Normal file
@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~14.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Grup de taxe: Taxa este un set de sub-taxe.\n"
|
||||
" - Fix: Suma taxei rămâne aceeași indiferent de preț.\n"
|
||||
" - Procent din preț: Valoare taxei este de% din preț:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (prețul nu este inclus)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (preț inclus)\n"
|
||||
" - Procent inclus în preț: Valoare taxei este o împărțire a prețului:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (prețul nu este inclus)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (preț inclus)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Codul aplicabil"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calculați valoarea taxei stabilind rezultatul variabil 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Calculați valoarea taxei prin setarea variabilei 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determinați dacă se va aplica taxa prin setarea variabilei 'result' la True sau False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Determinați dacă se va aplica taxa prin setarea variabilei 'result' la True sau False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Cod Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Taxă"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Calculul taxei"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr "Sabloane pentru Taxe"
|
121
i18n/ru.po
Normal file
121
i18n/ru.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Группа налогов: налог представляет собой набор дополнительных налогов.\n"
|
||||
" - Фиксированный: сумма налога остается неизменной независимо от цены.\n"
|
||||
" - Процент от цены: Сумма налога составляет% от цены:\n"
|
||||
" например, 100 * (1 + 10%) = 110 (не включая цену)\n"
|
||||
" например, 110 / (1 + 10%) = 100 (включая цену)\n"
|
||||
" - Процентная ставка налога с цены: Сумма налога представляет собой деление цены:\n"
|
||||
" например, 180 / (1-10%) = 200 (не включая цену)\n"
|
||||
" например 200 * (1-10%) = 180 (включая цену)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Применимый код"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Вычислите сумму налога, установив переменную 'результат'.\n"
|
||||
"\n"
|
||||
": параметр base_amount: float, фактическая сумма, на которую применяется налог\n"
|
||||
": параметр price_unit: float\n"
|
||||
": параметр количество: float\n"
|
||||
": параметр компании: res.company набор записей singleton\n"
|
||||
": параметр продукта: product.product набор записей singleton или Нет\n"
|
||||
": параметр партнера: res.partner набор записей singleton или Нет"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Определите, будет ли налог применяться, установив переменную 'результат' в значение Истина или Ложь.\n"
|
||||
"\n"
|
||||
": параметр price_unit: float\n"
|
||||
": параметр продукта: float\n"
|
||||
": параметр компании: res.company набор записей singleton\n"
|
||||
": параметр продукта: product.product набор записей singleton или Нет\n"
|
||||
": параметр партнера: res.partner набор записей singleton или Нет"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Код Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Налог"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Расчет налога"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Вы ввели неверный код %r в %r налогов\n"
|
||||
"\n"
|
||||
"Ошибка : %s"
|
118
i18n/sk.po
Normal file
118
i18n/sk.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Skupina daní: Daň je skupinou čiastkových daní.\n"
|
||||
" - Fixná: výška dane zostáva rovnaká bez ohľadu na cenu.\n"
|
||||
" - Percento z ceny: Výška dane je % z ceny:\n"
|
||||
" napr. 100 * (1 + 10%) = 110 (nie je zahrnuté v cene)\n"
|
||||
" napr. 110 / (1 + 10%) = 100 (zahrnuté v cene)\n"
|
||||
" - Percento z ceny vrátane dane: Výška dane je podielom z ceny:\n"
|
||||
" napr. 180 / (1 - 10%) = 200 (nie je zahrnuté v cene)\n"
|
||||
" napr. 200 * (1 - 10%) = 180 (zahrnuté v cene)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Použiteľný kód"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Vypočítajte sumu dane nastavením premennej \"výsledok\".\n"
|
||||
"\n"
|
||||
"\n"
|
||||
":param base_amount: float, aktuálna suma na ktorú sa aplikuje daň\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res. spoločnosť záznam singleton\n"
|
||||
":param product: product.product záznam singleton alebo None\n"
|
||||
":param partner: res.partner záznam singleton alebo None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Vypočítajte sumu dane nastavením premennej \"výsledok\" na Pravda alebo Nepravda.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res. spoločnosť záznam singleton\n"
|
||||
":param product: product.product záznam singleton alebo None\n"
|
||||
":param partner: res.partner záznam singleton alebo None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Kód Pyton"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Daň"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Výpočet dane"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
93
i18n/sl.po
Normal file
93
i18n/sl.po
Normal file
@ -0,0 +1,93 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Koda uporabe"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python koda"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Davek"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Izračun davka"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
109
i18n/sq.po
Normal file
109
i18n/sq.po
Normal file
@ -0,0 +1,109 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"Language: sq\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
121
i18n/sr.po
Normal file
121
i18n/sr.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"- Grupa poreza: Porez je skup podporeza.\n"
|
||||
"- Fiksni: Iznos poreza ostaje isti bez obzira na cenu.\n"
|
||||
"- Procenat od cene: Iznos poreza je % od cene:\n"
|
||||
" npr. 100 * (1 + 10%) = 110 (bez uključene cene)\n"
|
||||
" npr. 110 / (1 + 10%) = 100 (uključena cena)\n"
|
||||
"- Procenat od cene sa uključenim porezom: Iznos poreza je deljenje cene:\n"
|
||||
" npr. 180 / (1 - 10%) = 200 (bez uključene cene)\n"
|
||||
" npr. 200 * (1 - 10%) = 180 (uključena cena)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Primenjivi kod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Izračunajte iznos poreza postavljanjem promenljive 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, stvarni iznos na koji se primenjuje porez\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company zapis jedinstvenog skupa podataka\n"
|
||||
":param product: proizvod.proizvod zapis jedinstvenog skupa podataka ili None\n"
|
||||
":param partner: res.partner zapis jedinstvenog skupa podataka ili None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Odredite da li će se porez primenjivati postavljanjem promenljive 'result' na True ili False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company zapis jedinstvenog skupa podataka\n"
|
||||
":param product: product.product zapis jedinstvenog skupa podataka ili None\n"
|
||||
":param partner: res.partner zapis jedinstvenog skupa podataka ili None"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Porez"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Izračunavanje poreza"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Uneli ste nevažeći kod %r u %r poreze\n"
|
||||
"\n"
|
||||
"Greška: %s"
|
113
i18n/sr@latin.po
Normal file
113
i18n/sr@latin.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Porez"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
106
i18n/sv.po
Normal file
106
i18n/sv.po
Normal file
@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Simon S, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2023
|
||||
# lasch a <bmail440@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: lasch a <bmail440@gmail.com>, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Grupp av skatter: Skatten är en uppsättning underskatter.\n"
|
||||
" - Fast: Skattebeloppet förblir detsamma oavsett pris.\n"
|
||||
" - Procent av pris: Skattebeloppet är en % av priset:\n"
|
||||
" t.ex. 100 * (1 + 10%) = 110 (ingår inte i priset)\n"
|
||||
" t.ex. 110 / (1 + 10%) = 100 (ingår i priset)\n"
|
||||
" - Procentandel av priset Inkluderad moms: Skattebeloppet är en uppdelning av priset:\n"
|
||||
" t.ex. 180 / (1 - 10 %) = 200 (ingår inte i priset)\n"
|
||||
" t.ex. 200 * (1 - 10%) = 180 (ingår i priset)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Tillämplig kod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Pythonkod"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Skatt"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Skatteberäkning"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
111
i18n/ta.po
Normal file
111
i18n/ta.po
Normal file
@ -0,0 +1,111 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2016-02-05 07:38+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n"
|
||||
"Language: ta\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "வரி"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
111
i18n/te.po
Normal file
111
i18n/te.po
Normal file
@ -0,0 +1,111 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:04+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Telugu (http://www.transifex.com/odoo/odoo-9/language/te/)\n"
|
||||
"Language: te\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "పన్ను"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
120
i18n/th.po
Normal file
120
i18n/th.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - กลุ่มภาษี: ภาษีคือชุดของภาษีย่อย\n"
|
||||
" - คงที่: จำนวนภาษียังคงเท่าเดิมไม่ว่าจะมีราคาเท่าใดก็ตาม\n"
|
||||
" - เปอร์เซ็นต์ของราคา: จำนวนภาษีคือ % ของราคา:\n"
|
||||
" เช่น 100 * (1 + 10%) = 110 (ไม่รวมราคา)\n"
|
||||
" เช่น 110 / (1 + 10%) = 100 (ราคารวม)\n"
|
||||
" - เปอร์เซ็นต์ของภาษีราคารวม: จำนวนภาษีเป็นส่วนหนึ่งของราคา:\n"
|
||||
" เช่น 180 / (1 - 10%) = 200 (ไม่รวมราคา)\n"
|
||||
" เช่น 200 * (1 - 10%) = 180 (รวมราคา)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "รหัสที่ใช้งานได้"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"คำนวณจำนวนภาษีโดยการตั้งค่าตัวแปร 'ผลลัพธ์'\n"
|
||||
"\n"
|
||||
":param base_amount: ลอยตัว จำนวนเงินจริงที่ใช้ภาษี\n"
|
||||
":param price_unit: ลอยตัว\n"
|
||||
":param quantity: ลอยตัว\n"
|
||||
":param company: res.company ชุดระเบียนซิงเกิลตัน\n"
|
||||
":param product: product.product ชุดระเบียนซิงเกิลตัน หรือ ไม่มี\n"
|
||||
":param Partner: res.partner ชุดระเบียนซิงเกิลตัน หรือ ไม่มี"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"ตรวจสอบว่าภาษีจะถูกนำไปใช้โดยการตั้งค่าตัวแปร 'ผลลัพธ์' เป็น True หรือ False\n"
|
||||
"\n"
|
||||
":param price_unit: ลอยตัว\n"
|
||||
":param quantity: ลอยตัว\n"
|
||||
":param company: res.company ชุดระเบียนซิงเกิลตัน\n"
|
||||
":param product: product.product ชุดระเบียนซิงเกิลตัน หรือ ไม่มี\n"
|
||||
":param Partner: res.partner ชุดระเบียนซิงเกิลตัน หรือ ไม่มี"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "โค้ด Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "ภาษี"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "การคำนวณภาษี"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"คุณป้อนรหัส %r ไม่ถูกต้องในภาษี %r\n"
|
||||
"\n"
|
||||
"เกิดข้อผิดพลาด : %s"
|
119
i18n/tr.po
Normal file
119
i18n/tr.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Vergi Grubu: Vergi bir dizi alt vergidir.\n"
|
||||
" - Sabit: Vergi tutarı, fiyat ne olursa olsun aynı kalır.\n"
|
||||
" - Fiyatın Yüzdesi: Vergi tutarı fiyatın yüzdesidir:\n"
|
||||
" örn. 100 * (1+10%) = 110 (fiyata dahil değil)\n"
|
||||
" örn. 110 / (1 + 10%) = 100 (fiyata dahil)\n"
|
||||
" - Vergi Dahil Fiyat Yüzdesi: Vergi tutarı fiyatın bir bölümüdür:\n"
|
||||
" örn. 180 / (1 - 10%) = 200 (fiyata dahil değil)\n"
|
||||
" örn. 200 * (1 - 10%) = 180 (fiyata dahil)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Uygulanabilirlik Kodu"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"'Sonuç' değişkenini ayarlayarak vergi tutarını hesaplayın.\n"
|
||||
"\n"
|
||||
": Param base_amount: float, verginin uygulanacağı gerçek tutar\n"
|
||||
": Param fiyat_birimi: float\n"
|
||||
": Param miktarı: float\n"
|
||||
": Param şirket: res.company recordset singleton\n"
|
||||
": Param ürün: product.product kayıt grubu tek veya hiçbiri\n"
|
||||
": Param partner: res.partner kayıt kümesi singleton veya yok"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"'Result' değişkenini True veya False olarak ayarlayarak vergi uygulanıp uygulanmayacağını belirleyin.\n"
|
||||
"\n"
|
||||
": Param fiyat_birimi: float\n"
|
||||
": Param miktarı: float\n"
|
||||
": Param şirketi: res.company recordset singleton\n"
|
||||
": Param ürün: product.product kayıt grubu tek veya hiçbiri\n"
|
||||
": Param partner: res.partner kayıt kümesi singleton veya yok"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python Kodu"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Vergi"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Vergi Hesaplaması"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
120
i18n/uk.po
Normal file
120
i18n/uk.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Група податків: Податок включає субподатки.\n"
|
||||
" - Фіксований: Сума податку залишається такою ж, незалежно від ціни.\n"
|
||||
" - Відсоток ціни: Сума податку є % ціни:\n"
|
||||
" напр., 100 * (1 + 10%) = 110 (не включає ціну)\n"
|
||||
" напр., 110 / (1 + 10%) = 100 (ціна включена)\n"
|
||||
" - Відсоток ціни із включеним податком: Сума податку - це поділ ціни:\n"
|
||||
" напр., 180 / (1 - 10%) = 200 (не включає ціну)\n"
|
||||
" напр., 200 * (1 - 10%) = 180 (ціна включена)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Придатний код"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Обчислити суму податку, встановивши змінну \"результат\"\n"
|
||||
"\n"
|
||||
":param base_amount: float, фактична сума, на яку застосовується податок\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company набір одиночних записів\n"
|
||||
":param product: product.product набір одиночних записів або Нічого\n"
|
||||
":param partner: res.partner набір одиночних записів або Нічого"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Визначте, чи буде застосовано податок, встановивши змінну \"результат\" на \"Правильна\" або \"Невірна\".\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company набір одиночних записів\n"
|
||||
":param product: product.product набір одиночних записів або Нічого\n"
|
||||
":param partner: res.partner набір одиночних записів або Нічого"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Код Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Податок"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Розрахунок податку"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Ви ввели недійсний код в податках\n"
|
||||
"\n"
|
||||
"Помилка: %s"
|
120
i18n/vi.po
Normal file
120
i18n/vi.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - Nhóm thuế: Thuế là tập hợp của các loại thuế con.\n"
|
||||
" - Cố định: Số tiền thuế luôn không đổi dù giá có thay đổi.\n"
|
||||
" - Phần trăm giá: Số tiền thuế được tính theo % giá cả:\n"
|
||||
" VD: 100 * (1 + 10%) = 110 (chưa bao gồm trong giá)\n"
|
||||
" VD: 110 / (1 + 10%) = 100 (đã gồm trong giá)\n"
|
||||
" - Phần trăm của giá đã bao gồm thuế: Tiền thuế là khoản tiền được chia ra từ giá:\n"
|
||||
" VD: 180 / (1 - 10%) = 200 (chưa bao gồm trong giá)\n"
|
||||
" VD: 200 * (1 - 10%) = 180 (đã gồm trong giá)\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "Mã áp dụng"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Tính số tiền thuế bằng cách đặt biến 'kết quả'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, số tiền thực tế được áp dụng tính thuế\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: sản phẩm.product recordset singleton hoặc Không\n"
|
||||
":param partner: res.partner recordset singleton hoặc Không"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"Xác định xem thuế có được áp dụng hay không bằng cách đặt biến 'kết quả' thành Đúng hoặc Sai.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton hoặc Không\n"
|
||||
":param partner: res.partner recordset singleton hoặc Không"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Mã Python"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "Thuế"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "Tính thuế"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"Bạn đã nhập mã %r không hợp lệ trong các loại thuế %r\n"
|
||||
"\n"
|
||||
"Lỗi: %s"
|
119
i18n/zh_CN.po
Normal file
119
i18n/zh_CN.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - 税项组:税项为一组子税项。\n"
|
||||
" - 固定:无论价格如何,税额保持不变。\n"
|
||||
" - 价格百分比:税额是价格的一定百分比:\n"
|
||||
" 例如:100 * (1 + 10%) = 110(不含价格)\n"
|
||||
" 例如:110 / (1 + 10%) = 100(包含价格)\n"
|
||||
"- 价格的一定比例,含税:税额是价格的一部分:\n"
|
||||
" 例如:180 / (1 - 10%) = 200(不含价格)\n"
|
||||
" 例如:200 * (1 - 10%) = 180(含价格)"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "适用代码"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"通过设置变量“结果”计算税额。\n"
|
||||
"\n"
|
||||
":param base_amount:浮动,实际计税金额\n"
|
||||
":param price_unit:浮动\n"
|
||||
":param quantity:浮动\n"
|
||||
":param company: res.company记录集单项\n"
|
||||
":param product: product.product记录集单项或无\n"
|
||||
":param partner: res.partner记录集单项或无"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"通过设置变量“结果”为正确或错误来决定是否计算税额。\n"
|
||||
"\n"
|
||||
":param price_unit:浮动\n"
|
||||
":param quantity:浮动\n"
|
||||
":param company: res.company记录集单项\n"
|
||||
":param product: product.product记录集单项或无\n"
|
||||
":param partner: res.partner记录集单项或无"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python代码"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "税项"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "税费计算"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"您在 %r 税项中输入了无效代码%r\n"
|
||||
"\n"
|
||||
"错误:%s"
|
111
i18n/zh_HK.po
Normal file
111
i18n/zh_HK.po
Normal file
@ -0,0 +1,111 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-12 07:50+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:04+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/odoo/odoo-9/language/zh_HK/)\n"
|
||||
"Language: zh_HK\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "稅項"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax_template
|
||||
msgid "Templates for Taxes"
|
||||
msgstr ""
|
120
i18n/zh_TW.po
Normal file
120
i18n/zh_TW.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_tax_python
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
|
||||
msgid ""
|
||||
"\n"
|
||||
" - Group of Taxes: The tax is a set of sub taxes.\n"
|
||||
" - Fixed: The tax amount stays the same whatever the price.\n"
|
||||
" - Percentage of Price: The tax amount is a % of the price:\n"
|
||||
" e.g 100 * (1 + 10%) = 110 (not price included)\n"
|
||||
" e.g 110 / (1 + 10%) = 100 (price included)\n"
|
||||
" - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
|
||||
" e.g 180 / (1 - 10%) = 200 (not price included)\n"
|
||||
" e.g 200 * (1 - 10%) = 180 (price included)\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" - 稅組:稅是一組子稅.\n"
|
||||
" - 固定: 無論價格如何,稅額都保持不變.\n"
|
||||
" - 價格百分比:稅額是價格的百分比.\n"
|
||||
" 例如100 * 10%= 110 (不含價格)\n"
|
||||
" 例如110 / (1 + 10%)= 100 (含價格)\n"
|
||||
" - 含稅價格的百分比:含稅額除以價格:\n"
|
||||
" 例如180 / (1 - 10%) = 200 (不含價格)\n"
|
||||
" 例如200 * (1 - 10%) = 180 (含價格\n"
|
||||
" "
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
|
||||
msgid "Applicable Code"
|
||||
msgstr "適用代碼"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
|
||||
msgid ""
|
||||
"Compute the amount of the tax by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"通過設定變量『結果』來計算稅的總額.\n"
|
||||
"\n"
|
||||
":參數 base_amount: 浮點型, 實際應納稅額\n"
|
||||
":參數 price_unit: 浮點型\n"
|
||||
":參數 quantity: 浮點型\n"
|
||||
":參數 company: res.company 記錄單\n"
|
||||
":參數 product: product.product 記錄單或者空\n"
|
||||
":參數 partner: res.partner 記錄單或者空"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
|
||||
msgid ""
|
||||
"Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
|
||||
"\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None"
|
||||
msgstr ""
|
||||
"通過設定變量『結果』的真或假來決定是否計算應納稅額\n"
|
||||
"\n"
|
||||
":參數 price_unit: 浮點型\n"
|
||||
":參數 quantity: 浮點型\n"
|
||||
":參數 company: res.company 記錄單\n"
|
||||
":參數 product: product.product 記錄單或者空\n"
|
||||
":參數 partner: res.partner 記錄單或者空"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
|
||||
#: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
|
||||
msgid "Python Code"
|
||||
msgstr "Python 程式碼"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model,name:account_tax_python.model_account_tax
|
||||
msgid "Tax"
|
||||
msgstr "稅金"
|
||||
|
||||
#. module: account_tax_python
|
||||
#: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
|
||||
msgid "Tax Computation"
|
||||
msgstr "計稅方式"
|
||||
|
||||
#. module: account_tax_python
|
||||
#. odoo-python
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#: code:addons/account_tax_python/models/account_tax.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You entered invalid code %r in %r taxes\n"
|
||||
"\n"
|
||||
"Error : %s"
|
||||
msgstr ""
|
||||
"你輸入了無效代碼 %r 至 %r 的稅項\n"
|
||||
"\n"
|
||||
"錯誤: %s"
|
4
models/__init__.py
Normal file
4
models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import account_tax
|
61
models/account_tax.py
Normal file
61
models/account_tax.py
Normal file
@ -0,0 +1,61 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields, _
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class AccountTaxPython(models.Model):
|
||||
_inherit = "account.tax"
|
||||
|
||||
amount_type = fields.Selection(selection_add=[
|
||||
('code', 'Python Code')
|
||||
], ondelete={'code': lambda recs: recs.write({'amount_type': 'percent', 'active': False})})
|
||||
|
||||
python_compute = fields.Text(string='Python Code', default="result = price_unit * 0.10",
|
||||
help="Compute the amount of the tax by setting the variable 'result'.\n\n"
|
||||
":param base_amount: float, actual amount on which the tax is applied\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None")
|
||||
python_applicable = fields.Text(string='Applicable Code', default="result = True",
|
||||
help="Determine if the tax will be applied by setting the variable 'result' to True or False.\n\n"
|
||||
":param price_unit: float\n"
|
||||
":param quantity: float\n"
|
||||
":param company: res.company recordset singleton\n"
|
||||
":param product: product.product recordset singleton or None\n"
|
||||
":param partner: res.partner recordset singleton or None")
|
||||
|
||||
def _compute_amount(self, base_amount, price_unit, quantity=1.0, product=None, partner=None, fixed_multiplicator=1):
|
||||
self.ensure_one()
|
||||
if product and product._name == 'product.template':
|
||||
product = product.product_variant_id
|
||||
if self.amount_type == 'code':
|
||||
company = self.env.company
|
||||
localdict = {'base_amount': base_amount, 'price_unit':price_unit, 'quantity': quantity, 'product':product, 'partner':partner, 'company': company}
|
||||
try:
|
||||
safe_eval(self.python_compute, localdict, mode="exec", nocopy=True)
|
||||
except Exception as e:
|
||||
raise UserError(_("You entered invalid code %r in %r taxes\n\nError : %s", self.python_compute, self.name, e)) from e
|
||||
return localdict['result']
|
||||
return super(AccountTaxPython, self)._compute_amount(base_amount, price_unit, quantity, product, partner, fixed_multiplicator)
|
||||
|
||||
def compute_all(self, price_unit, currency=None, quantity=1.0, product=None, partner=None, is_refund=False, handle_price_include=True, include_caba_tags=False, fixed_multiplicator=1):
|
||||
if product and product._name == 'product.template':
|
||||
product = product.product_variant_id
|
||||
|
||||
def is_applicable_tax(tax, company=self.env.company):
|
||||
if tax.amount_type == 'code':
|
||||
localdict = {'price_unit': price_unit, 'quantity': quantity, 'product': product, 'partner': partner, 'company': company}
|
||||
try:
|
||||
safe_eval(tax.python_applicable, localdict, mode="exec", nocopy=True)
|
||||
except Exception as e:
|
||||
raise UserError(_("You entered invalid code %r in %r taxes\n\nError : %s", tax.python_applicable, tax.name, e)) from e
|
||||
return localdict.get('result', False)
|
||||
|
||||
return True
|
||||
|
||||
return super(AccountTaxPython, self.filtered(is_applicable_tax)).compute_all(price_unit, currency, quantity, product, partner, is_refund=is_refund, handle_price_include=handle_price_include, include_caba_tags=include_caba_tags, fixed_multiplicator=fixed_multiplicator)
|
3
tests/__init__.py
Normal file
3
tests/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import test_tax
|
61
tests/test_tax.py
Normal file
61
tests/test_tax.py
Normal file
@ -0,0 +1,61 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from odoo.addons.account.tests.test_tax import TestTaxCommon
|
||||
from odoo.tests import tagged
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestTaxPython(TestTaxCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestTaxPython, cls).setUpClass()
|
||||
cls.python_tax = cls.env['account.tax'].create({
|
||||
'name': 'Python TAx',
|
||||
'amount_type': 'code',
|
||||
'amount': 0.0,
|
||||
'python_compute': 'result = ((price_unit * quantity) - ((price_unit * quantity) / 1.12)) * 0.5',
|
||||
'sequence': 1,
|
||||
})
|
||||
|
||||
def test_tax_python_basic(self):
|
||||
res = self.python_tax.compute_all(130.0)
|
||||
self._check_compute_all_results(
|
||||
136.96, # 'total_included'
|
||||
130.0, # 'total_excluded'
|
||||
[
|
||||
# base , amount | seq | amount | incl | incl_base
|
||||
# --------------------------------------------------
|
||||
(130.0, 6.96), # | 1 | 6% | t |
|
||||
# --------------------------------------------------
|
||||
],
|
||||
res
|
||||
)
|
||||
|
||||
def test_tax_python_price_include(self):
|
||||
self.python_tax.price_include = True
|
||||
res = self.python_tax.compute_all(130.0)
|
||||
self._check_compute_all_results(
|
||||
130, # 'total_included'
|
||||
123.04, # 'total_excluded'
|
||||
[
|
||||
# base , amount | seq | amount | incl | incl_base
|
||||
# ---------------------------------------------------
|
||||
(123.04, 6.96), # | 1 | 6% | t |
|
||||
# ---------------------------------------------------
|
||||
],
|
||||
res
|
||||
)
|
||||
|
||||
res = (self.python_tax + self.python_tax).compute_all(130.0)
|
||||
self._check_compute_all_results(
|
||||
130, # 'total_included'
|
||||
116.07, # 'total_excluded'
|
||||
[
|
||||
# base , amount | seq | amount | incl | incl_base
|
||||
# ---------------------------------------------------
|
||||
(116.07, 6.96), # | 1 | 6% | t |
|
||||
(116.07, 6.97), # | 1 | 6% | t |
|
||||
# ---------------------------------------------------
|
||||
],
|
||||
res
|
||||
)
|
20
views/account_tax_views.xml
Normal file
20
views/account_tax_views.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="view_tax_form_inherited" model="ir.ui.view">
|
||||
<field name="name">account.tax.form.inherited</field>
|
||||
<field name="model">account.tax</field>
|
||||
<field name="inherit_id" ref="account.view_tax_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='children_tax_ids']" position="before">
|
||||
<group invisible="amount_type != 'code'">
|
||||
<group>
|
||||
<field name="python_compute" required="amount_type == 'code'" />
|
||||
</group>
|
||||
<group>
|
||||
<field name="python_applicable" required="amount_type == 'code'" />
|
||||
</group>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user