Начальное наполнение
This commit is contained in:
parent
c6b0f6e3b7
commit
8767dd548c
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
|
29
__manifest__.py
Normal file
29
__manifest__.py
Normal file
@ -0,0 +1,29 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': 'Point of Sale Discounts',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Point of Sale',
|
||||
'sequence': 6,
|
||||
'summary': 'Simple Discounts in the Point of Sale ',
|
||||
'description': """
|
||||
|
||||
This module allows the cashier to quickly give percentage-based
|
||||
discount to a customer.
|
||||
|
||||
""",
|
||||
'depends': ['point_of_sale'],
|
||||
'data': [
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/pos_config_views.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'assets': {
|
||||
'point_of_sale._assets_pos': [
|
||||
'pos_discount/static/src/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
118
i18n/af.po
Normal file
118
i18n/af.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Afslag"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
126
i18n/ar.po
Normal file
126
i18n/ar.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"منتج الخصم مطلوب لاستخدام خاصية الخصم الشامل. اذهب إلى نقطة البيع > التهيئة "
|
||||
"> الإعدادات لإعدادها. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "السماح لأمين الصندوق بمنح خصومات على الطلب بأكمله. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "الخصم"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "الخصم %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "نسبة الخصم"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "منتج الخصم"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "لم يتم العثور على منتج خصم "
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "بلا ضريبة "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "خصومات الطلبات "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "تهيئة نقطة البيع "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "منتج خصم نقطة البيع "
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "الضريبة: %s "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "نسبة الخصم الافتراضية عند الضغط على زر الخصم "
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"يبدو أن منتج الخصم لم تتم تهيئته بشكل صحيح. تأكد من تفعيل خيارَي 'قابل "
|
||||
"للبيع' و'متاح في نقطة البيع'. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "المنتج المستخدَم لتطبيق الخصم على التذكرة. "
|
122
i18n/az.po
Normal file
122
i18n/az.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://www.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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
124
i18n/bg.po
Normal file
124
i18n/bg.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 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: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Позволете на касиера да прави отстъпка върху цялата поръчка."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Отстъпка"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Отстъпка %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Процент отстъпка"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Продукт с отстъпка"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Поръчайте отстъпки "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Конфигурация на център за продажби"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
121
i18n/bs.po
Normal file
121
i18n/bs.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:16+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
134
i18n/ca.po
Normal file
134
i18n/ca.po
Normal file
@ -0,0 +1,134 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# Bàrbara Partegàs <barbararof@gmail.com>, 2023
|
||||
# Jordi Bancells <jordibancells@pangea.org>, 2023
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
# Ivan Espinola, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Es necessita un producte de descompte per utilitzar la funció Descompte "
|
||||
"global. Aneu al punt de venda . Configuració > Configuració per a establir-"
|
||||
"lo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permetre al caixer fer descomptes en tota la comanda. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paràmetres de configuració"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Descompte %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Descompte en %"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producte en descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "No s'ha trobat cap producte en descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Sense impostos"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descomptes de comandes "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuració del Punt de Venda"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Producte de descompte Pos"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Impostos: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"El percentatge predeterminat de descompte en fer clic al botó Descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"El producte amb descompte sembla estar mal configurat. Assegureu-vos que es "
|
||||
"marca com a \"Es pot vendre\" i \"Disponible al punt de venda\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "El producte utilitzat per aplicar el descompte al bitllet."
|
125
i18n/cs.po
Normal file
125
i18n/cs.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Jakub Smolka, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Umožnit pokladníkovi poskytnout slevy na celou objednávku."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurační nastavení"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Sleva"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Sleva v %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Sleva v procentech"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Zlevněný produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenalezen žádný slevový produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Objednat slevy"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavení prodejního místa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Zdá se, že slevový produkt není správně nakonfigurován. Ujistěte se, že je "
|
||||
"označeno jako 'Může být prodáno' a 'Dostupné v místě prodeje'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
125
i18n/da.po
Normal file
125
i18n/da.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Tillad ekspedienten at give rabat på hele ordren."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurer opsætning"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabat"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabat %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Procentvis rabat"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Giv rabat på et produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Der blev ikke fundet noget rabatprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Ingen moms"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Ordrerabatter"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS konfiguration"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Moms: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Rabatproduktet virker forkert konfigureret. Sørg for, at det er markeret som"
|
||||
" 'Kan sælges' og 'Tilgængeligt i POS'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
130
i18n/de.po
Normal file
130
i18n/de.po
Normal file
@ -0,0 +1,130 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Um die Funktion des Gesamtrabatts zu nutzen, ist ein Rabattprodukt "
|
||||
"erforderlich. Gehen Sie zu Kassensystem > Konfiguration > Einstellungen, um "
|
||||
"es einzustellen."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
"Ermöglicht dem Kassierer die Eingabe von Rabatten auf den gesamten Auftrag."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurationseinstellungen"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabatt %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "% Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Kein Rabattprodukt gefunden"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Keine Steuer"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Auftragsrabatte"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassensystem-Konfiguration"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Rabattprodukt für Kassensystem"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Steuer: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"Der Standard-Rabattprozentsatz beim Klicken auf die Schaltfläche Rabatt."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Das Rabattprodukt scheint falsch konfiguriert zu sein. Stellen Sie sicher, "
|
||||
"dass es als „Kann verkauft werden“ und „Verfügbar im Kassensystem“ "
|
||||
"gekennzeichnet ist."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Das Produkt wird zur Anwendung des Rabatts auf den Kassenbon benutzt."
|
123
i18n/el.po
Normal file
123
i18n/el.po
Normal file
@ -0,0 +1,123 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:16+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Να επιτρέπεται ο ταμίας να δίνει έκπτωση σε όλη την παραγγελία. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Έκπτωση"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Ποσοστιαία Έκπτωση"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Έκπτωση Είδους"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Έκπτωση Παραγγελίας"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Διαμόρφωση του Σταθμού Εργασίας"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
120
i18n/en_GB.po
Normal file
120
i18n/en_GB.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 06:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
128
i18n/es.po
Normal file
128
i18n/es.po
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Se requiere un producto descuento para usar la función de descuento global. "
|
||||
"Se configura en Punto de venta > Configuración > Ajustes."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permitir al cajero ofrecer descuentos en todo el pedido"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Descuento %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "No se ha encontrado ningún producto con descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Sin impuestos"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Solicitar descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del TPV"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Producto descuento de TPV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Impuesto: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"El porcentaje automático de descuento al hacer clic en el botón de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"El producto de descuento parece estar mal configurado. Asegúrese de que está"
|
||||
" marcada como 'Puede venderse' y 'Disponible en el punto de venta'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "El producto usado para aplicar el descuento en el ticket."
|
128
i18n/es_419.po
Normal file
128
i18n/es_419.po
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"La función de descuento global necesita un producto de descuento. Para "
|
||||
"configurarlo, vaya a Punto de venta > Configuración > Ajustes."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permita que el cajero ofrezca descuentos para toda la orden."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "% de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto con descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "No se encontró ningún producto con descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Sin impuesto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descuentos de la orden"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del punto de venta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Producto de descuento de PdV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Impuesto: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"El porcentaje automático de descuento al hacer clic en el botón de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"El producto de descuento parece estar mal configurado. Asegúrese de que está"
|
||||
" marcado como 'Se puede vender' y 'Disponible en el punto de venta'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "El producto usado para aplicar el descuento en el ticket."
|
120
i18n/es_BO.po
Normal file
120
i18n/es_BO.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-08-25 10:21+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
120
i18n/es_CL.po
Normal file
120
i18n/es_CL.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-08-25 10:21+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
122
i18n/es_CO.po
Normal file
122
i18n/es_CO.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016
|
||||
# Mateo Tibaquirá <nestormateo@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2016-02-18 13:47+0000\n"
|
||||
"Last-Translator: Felipe Palomino <omega@nubark.com>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permitirle al cajero dar descuentos en la orden completa."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descuentos de la Orden"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
120
i18n/es_CR.po
Normal file
120
i18n/es_CR.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 06:42+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
120
i18n/es_DO.po
Normal file
120
i18n/es_DO.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2016-04-12 00:26+0000\n"
|
||||
"Last-Translator: Juliano Henriquez <juliano@consultoriahenca.com>\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permite al cajero dar descuentos en toda la orden."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descuentos de orden"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
121
i18n/es_EC.po
Normal file
121
i18n/es_EC.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Rick Hunter <rick_hunter_ec@yahoo.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2016-01-18 23:16+0000\n"
|
||||
"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permite al cajero elegir el descuento en toda la orden."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Orden de Descuentos"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
121
i18n/es_PE.po
Normal file
121
i18n/es_PE.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2016-06-16 15:37+0000\n"
|
||||
"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\n"
|
||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permitir al cajero otorgar descuentos sobre el pedido total."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descuentos del Pedido"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
129
i18n/et.po
Normal file
129
i18n/et.po
Normal file
@ -0,0 +1,129 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Wanradt Koell <wanradt@gmail.com>, 2023
|
||||
# Maidu Targama <m.targama@gmail.com>, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Ülemaailmse allahindluse funktsiooni kasutamiseks on vaja allahindlustoodet."
|
||||
" Selle seadistamiseks minge Kassa > Konfiguratsioon > Seaded."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Luba kassiiril teha allahindlus kogu ostule"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Seadistused"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Allahindlus"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Allahindlus %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Allahindluse protsent"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Allahinnatud toode"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Allahindlusega tooteid ei leitud"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Maksudeta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Ostu allahindlused"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa seadistused"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Kassa allahinnatud toode"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Maksud: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Vaikimisi allahindluse protsent, kui klikkida nupule \"Allahindlus\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Allahindlusega toode ei ole õigesti seadistatud. Veenduge, et see on "
|
||||
"märgitud kui 'Müüdav' ja 'Kassas nähtav'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Toode, mida kasutatakse pileti allahindluse kohaldamiseks."
|
120
i18n/eu.po
Normal file
120
i18n/eu.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-08-25 10:21+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Deskontua"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Deskontua ehunekotan"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Deskontu produktua"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
124
i18n/fa.po
Normal file
124
i18n/fa.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Hamid Darabi, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 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: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تنظیمات پیکربندی"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "تخفیف"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "تخفیف %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "درصد تخفیف"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "تخفیف محصول"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "محصول تخفیفی پیدا نشد"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "دیگر تخفیفها"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "پیکربندی پایانه فروش"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
130
i18n/fi.po
Normal file
130
i18n/fi.po
Normal file
@ -0,0 +1,130 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Veikko Väätäjä <veikko.vaataja@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: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Yleisten alennuksen käyttäminen edellyttää alennustuotetta. Määritä se "
|
||||
"kohdassa Kassa > Määritykset > Asetukset."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Salli koko tilaukselle myönnettävät alennukset."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Alennus"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Alennus %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Alennusprosentti"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Alennustuote"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Alennustuotetta ei löytynyt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "ei veroa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Tilauksen alennukset"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapäätteen asetukset"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Kassan alennustuote"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Vero: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Oletusarvoinen alennusprosentti, kun napsautat Alennus-painiketta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Alennustuote näyttää olevan väärin konfiguroitu. Varmista, että se on "
|
||||
"merkitty 'Voidaan myydä' ja 'Saatavilla kassassa'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Tuote, jolla alennusta sovelletaan kuittiin."
|
120
i18n/fo.po
Normal file
120
i18n/fo.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-12-22 22:35+0000\n"
|
||||
"Last-Translator: Jarnhold Nattestad <nattestads@gmail.com>\n"
|
||||
"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Avsláttur"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
127
i18n/fr.po
Normal file
127
i18n/fr.po
Normal file
@ -0,0 +1,127 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Un produit de remise est nécessaire pour utiliser la fonctionnalité de "
|
||||
"Remise globale. Allez au Point de Vente > Paramètres pour le configurer."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
"Permettre au caissier de faire une remise sur la totalité de la commande."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramètres de configuration"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Remise %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Pourcentage de remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Produit de remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Aucun produit de remise trouvé"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Aucune taxe"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Remises de la commande"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuration du point de vente"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Produit de remise PdV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Taxe : %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Le pourcentage de remise par défaut en cliquant sur le bouton Remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Le produit de remise semble mal configuré. Vérifiez qu'il est défini en tant"
|
||||
" que produit \"Peut être vendu\" et \"Disponible dans le Point de Vente\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Le produit utilisé pour appliquer la remise sur le ticket."
|
122
i18n/gu.po
Normal file
122
i18n/gu.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Discount %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Discount Percentage"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
125
i18n/he.po
Normal file
125
i18n/he.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "אפשר לקופאי לתת הנחה לכל ההזמנה."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדר הגדרות"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr " % הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "אחוז הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "מוצר הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "לא נמצא מוצר הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "הנחות בהזמנה"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "תצורת קופה"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"נראה כי מוצר ההנחה מוגדר בצורה שגויה. ודא שהוא מסומן כ- 'ניתן למכירה' ו'זמין"
|
||||
" בקופה'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
123
i18n/hr.po
Normal file
123
i18n/hr.po
Normal file
@ -0,0 +1,123 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Omogućuje blagajniku odobravanje popusta na cijelu narudžbu."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Popust %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Postotak popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nije pronađen proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Popusti narudžbe"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr "Proizvod popusta izgleda krivo postavljen. Provjerite da li je označen sa 'Može se prodavati' i 'Raspoloživo u POS'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
125
i18n/hu.po
Normal file
125
i18n/hu.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2023
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# krnkris, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Engedélyezi a kasszához a teljes megrendelésre az engedmény adását."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Kedvezmény"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Kedvezmény %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Árengedmény százaléka"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Termék árengedmény"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Engedmények megrendelésre"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Értékesítési pont beállítása"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
126
i18n/id.po
Normal file
126
i18n/id.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Diskon produk dibutuhkan untuk menggunakan fitur Diskon Global. Pergi ke POS"
|
||||
" > Konfigurasi > Pengaturan."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Mengizinkan kasir untuk memberikan diskon pada seluruh pesanan."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Pengaturan Konfigurasi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Diskon %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Persentase Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Produk Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Tidak ada diskon produk yang ditemukan"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Tidak ada pajak"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Diskon Order"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurasi Point of Sale"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Diskon Produk POS"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Pajak: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Persentase diskon default saat mengeklik pada tombol Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Diskon produk sepertinya salah dikonfigurasi. Pastikan ditandai sebagai "
|
||||
"'Dapat Dijual' dan 'Tersedia di POS'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Produk digunakan untuk menetapkan diskon pada tiket."
|
118
i18n/is.po
Normal file
118
i18n/is.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Afsláttur"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Uppsetning kassakerfis"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
128
i18n/it.po
Normal file
128
i18n/it.po
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Per utilizzare la funzionalità sconto globale è necessario un prodotto "
|
||||
"scontato. Vai su Punto Vendita > Configurazione > Impostazioni relative."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Consente al cassiere di applicare sconti sul totale dell'ordine."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Impostazioni di configurazione"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Sconto %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Percentuale sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Prodotto sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nessun prodotto sconto trovato"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Nessuna tassa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Sconti ordine"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurazione punto vendita"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Prodotto sconto POS"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Tassa: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"Percentuale di sconto predefinita quando si fa clic sul pulsante Sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Il prodotto sconto non sembra essere configurato correttamente. Verificare "
|
||||
"che sia contrassegnato come \"Può essere venduto\" e \"Disponibile nel punto"
|
||||
" vendita\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Prodotto utilizzato per applicare lo sconto sullo scontrino."
|
122
i18n/ja.po
Normal file
122
i18n/ja.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "全体値引機能を使用するには、値引プロダクトが必要です。POS > 設定 > 管理設定で設定して下さい。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "キャッシャーでのオーダ全体に対する値引を許可"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "値引"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "値引%"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "値引率"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "値引製品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "値引プロダクトが見つかりません"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "税なし"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "オーダ値引"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "POS値引プロダクト"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "税:%s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "値引ボタンをクリックしたときのデフォルトの値引率"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr "値引プロダクトの設定が間違っているようです。'販売可能'と'POSで利用可能'のフラグが立っていることを確認して下さい。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "チケットに値引を適用するために使用されるプロダクト"
|
120
i18n/ka.po
Normal file
120
i18n/ka.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-08-25 10:21+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "ფასდაკლება"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
120
i18n/kab.po
Normal file
120
i18n/kab.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 06:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Tuǧǧit"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Amfidi n tuǧǧit"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Afris n tuǧǧit"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
121
i18n/km.po
Normal file
121
i18n/km.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:16+0000\n"
|
||||
"Last-Translator: Samkhann Seang <seangsamkhann@gmail.com>, 2018\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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "បញ្ចុះតម្លៃ"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
122
i18n/ko.po
Normal file
122
i18n/ko.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "전체 할인 기능을 사용하려면 할인 품목이 있어야 합니다. POS > 환경 설정 > 설정 메뉴로 이동하여 설정합니다."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "계산원이 전체 주문에 대해 할인을 제공하도록 허용하십시오."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "환경 설정"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "할인"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "할인율"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "할인율"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "할인 품목"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "할인 품목이 없습니다."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "세금 없음"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "주문 할인"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS 환경 설정"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "POS 할인 품목"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "세금: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "할인 버튼 클릭 시 적용되는 할인율 기본값"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr "할인 품목이 잘못 구성된 것 같습니다. '판매 가능' 및 'POS에서 사용 가능'으로 표시되어 있는지 확인하십시오."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "티켓에 할인을 적용 시 사용되는 품목입니다."
|
118
i18n/lb.po
Normal file
118
i18n/lb.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:13+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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
126
i18n/lt.po
Normal file
126
i18n/lt.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2023
|
||||
# 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: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Leisti kasininkui suteikti nuolaidą visam užsakymui."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigūracijos nustatymai"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Nuolaida"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Nuolaida %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Nuolaidos procentas"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Nuolaidinis produktas"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nerasta nuolaidos produktas"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Užsakymo nuolaidos"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pardavimo taško konfigūracija"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Nuolaidinis produktas atrodo nustatytas neteisingai. Įsitikinkite kad jis "
|
||||
"pažymėtas kaip \"Gali būti parduodamas\" ir \"Galimas pardavimo taške\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
122
i18n/lv.po
Normal file
122
i18n/lv.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Atļaut kasierim iedot atlaidi visam pasūtījumam."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurācijas uzstādījumi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Atlaide"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Atlaide %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Atlaides procents"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Atlaides prece"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nav atrasta atlaides prece"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Nav nodokļa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Pasūtījuma atlaides"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pārdošanas punkta konfigurācija"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "POS atlaides prece"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Nodoklis: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
121
i18n/mk.po
Normal file
121
i18n/mk.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Aleksandar Vangelovski <aleksandarv@hbee.eu>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2016-04-20 11:09+0000\n"
|
||||
"Last-Translator: Aleksandar Vangelovski <aleksandarv@hbee.eu>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Му овозможува на касиерот да дава попусти на целосната нарачка."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Попуст"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Процент на попуст"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Производ со попуст"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
124
i18n/mn.po
Normal file
124
i18n/mn.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: tserendavaa tsogtoo <tseegii011929@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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Бүхэл захиалга дээр хөнгөлөлт өгөх эрхийг кассчинд олгох"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Тохиргооны тохируулга"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Хөнгөлөлт"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Хөнгөлөлт %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Хөнгөлөлтийн хувь"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Барааны хөнгөлөлт"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Хямдралтай бүтээгдэхүүн олдсонгүй"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Захиалгын хөнгөлөлт"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Борлуулалтын цэгийн тохиргоо"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ПОС сэшн"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr "Хямдралын бүтээгдэхүүн буруу тохируулагдсан байна. Энэ нь \"Борлуулах боломжтой\", \"Борлуулах цэг дээр боломжтой\" гэсэн тэмдэглэгээтэй байгаа эсэхийг шалгаарай."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
123
i18n/nb.po
Normal file
123
i18n/nb.po
Normal file
@ -0,0 +1,123 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "La ekspeditør gi rabatter på hele ordren."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabatt %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Rabattprosent"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukter funnet"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Ordrerabatter"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapunkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kasseøkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr "Produktet for rabatt ser ut til å være feilkonfigurert. Forsikre deg om at det er flagget som 'Kan selges' og 'Tilgjengelig i kassasystemet'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
126
i18n/nl.po
Normal file
126
i18n/nl.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Een kortingsproduct is vereist om de Globale Kortingsfunctie te gebruiken. "
|
||||
"Ga naar Kassa > Configuratie > Instellingen om het in te stellen."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Sta de kassamedewerker toe om korting te geven op het hele order."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Korting"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Korting %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Kortingspercentage"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Kortingsproduct"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Geen kortingsproduct gevonden"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Geen btw"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Orderkortingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa-instellingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Kassa Kortingsproduct"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Btw: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Het standaard kortingspercentage als je op de kortingsknop klikt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Het kortingsproduct lijkt foutief geconfigureerd te zijn. Zorg ervoor dat "
|
||||
"het aangeduid is als 'Kan verkocht' worden en 'Beschikbaar in Kassa'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Het product gebruikt om de korting op het ticket toe te passen."
|
127
i18n/pl.po
Normal file
127
i18n/pl.po
Normal file
@ -0,0 +1,127 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Przeceniony produkt jest wymagany do użycia Globalnej Przeceny. Idź do Punkt"
|
||||
" Sprzedaży > Konfiguracja > Ustawienia aby go skonfigurować."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Pozwól kasjerowi dać upusty na całe zamówienie."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Upust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Upust %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Procent upustu"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Upust dla produktu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nie znaleziono produktu z upustem."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Bez podatku."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Upusty dla zamówienia"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfiguracja punktu sprzedaży"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Pos produkt z upustem"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Podatek: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"Domyślna wartość procentowa upustu gdy przycisk Upust zostanie kliknięty."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Produkt z upustem wygląda na niepopprawnie skonfigurowany. Upewnij się że "
|
||||
"jest oflagowany jako 'do sprzedaży' i 'dostępny w punkcie sprzedaży'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Produkt użyty do zastosowania upustu na bilecie."
|
118
i18n/pos_discount.pot
Normal file
118
i18n/pos_discount.pot
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
122
i18n/pt.po
Normal file
122
i18n/pt.po
Normal file
@ -0,0 +1,122 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permitir que o caixa atribua descontos em toda a encomenda."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Desconto %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Percentagem de Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Desconto em Produto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descontos da Encomenda"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de Venda"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
126
i18n/pt_BR.po
Normal file
126
i18n/pt_BR.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"É necessário um produto de desconto para utilizar o recurso de desconto "
|
||||
"global. Acesse Ponto de Venda > Configuração > Definições para configurá-lo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permitir ao caixa dar descontos em toda a compra."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "% de desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentagem de desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Produto de desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenhum produto de desconto encontrado"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Sem imposto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descontos do pedido"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do ponto de venda"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Produto de desconto do PDV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Imposto: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "O percentual de desconto padrão ao clicar no botão Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"O produto de desconto parece mal configurado. Certifique-se de que está "
|
||||
"marcado como 'Pode ser vendido' e 'Disponível no ponto de venda'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "O produto utilizado para aplicar o desconto no ticket."
|
124
i18n/ro.po
Normal file
124
i18n/ro.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permite casierului acordarea unei reduceri pentru întreaga comandă"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Setări de configurare"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Reducere"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Reducere %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Procent reducere"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Reducere produs"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Reduceri comandă"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurarea Punctului de Vânzare"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesiune Punct de vânzare"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
127
i18n/ru.po
Normal file
127
i18n/ru.po
Normal file
@ -0,0 +1,127 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# 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: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Для использования функции глобальной скидки необходим продукт со скидкой. "
|
||||
"Перейдите в пункт продажи > Конфигурация > Настройки, чтобы настроить его."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Разрешить кассиру, дать скидки на весь заказ."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Параметры конфигурации"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Скидка"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Скидка %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Скидка в процентах"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Товар по скидке"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Скидочный продукт не найден"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Никаких налогов"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Скидки на заказы"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Конфигурация точки продаж"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Продукт со скидкой Pos"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Налог: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Процент скидки по умолчанию при нажатии на кнопку скидки"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Похоже, что скидочный продукт настроен неправильно. Убедитесь, что он "
|
||||
"отмечен как \"Может быть продан\" и \"Доступен в местах продажи\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Продукт, используемый для применения скидки к билету."
|
124
i18n/sk.po
Normal file
124
i18n/sk.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Povoliť pokladníkovi dávať zľavy na celú objednávku."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Zľava"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Zľava %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Percentá zľavy"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Zľavniť produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenašli sa žiadne zľavnené produkty"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Zľavy objednávky"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurácia miesta predaja"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Produkt so zľavou sa zdá byť nesprávne nakonfigurovaný. Uistite sa, že je "
|
||||
"označený ako „Môže sa predať“ a „Dostupné v predajnom mieste“."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
128
i18n/sl.po
Normal file
128
i18n/sl.po
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Dejan Sraka <dejan.sraka@picolabs.si>, 2023
|
||||
# Grega Vavtar <grega@hbs.si>, 2023
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Dovoli v blagajni določanje popustov na celotno naročilo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Uredi nastavitve"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Popust %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Popust v odstotkih"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Izdelka s popustom ni mogoče najti"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavitve POS-blagajne"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Izdelek s popustom se zdi napačno konfiguriran. Prepričajte se, da je "
|
||||
"označeno kot »Lahko se prodaja« in »Na voljo v POSu«."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
120
i18n/sq.po
Normal file
120
i18n/sq.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2015-08-25 10:21+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Albanian (http://www.transifex.com/odoo/odoo-9/language/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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
128
i18n/sr.po
Normal file
128
i18n/sr.po
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2024
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Allow the cashier to give discounts on the whole order."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Popust %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Discount Percentage"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Discount Product"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "No discount product found"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "No tax"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Order Discounts"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Podešavanje POS terminala mesta prodaje"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Pos Discount Product"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Tax: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "The default discount percentage when clicking on the Discount button"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "The product used to apply the discount on the ticket."
|
121
i18n/sr@latin.po
Normal file
121
i18n/sr@latin.po
Normal file
@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.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: pos_discount
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid "A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
128
i18n/sv.po
Normal file
128
i18n/sv.po
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2023
|
||||
# Simon S, 2023
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Kim Asplund <kim.asplund@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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Tillåt kassören att ge rabatt på hela beställningen."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabatt %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Rabatt i procent"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukt hittad"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Order Rabatter"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassakonfigurering"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Rabattprodukten verkar vara felkonfigurerad. Se till att den är markerad som"
|
||||
" \"Kan säljas\" och \"Tillgänglig i kassan\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
126
i18n/th.po
Normal file
126
i18n/th.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"จำเป็นต้องมีสินค้าลดราคา เพื่อใช้คุณสมบัติส่วนลดแบบทั่วโลก เพื่อตั้งค่า "
|
||||
"ไปที่การขายหน้าร้าน > การกำหนดค่า > การตั้งค่า"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "อนุญาตให้แคชเชียร์มอบส่วนลดสำหรับคำสั่งซื้อทั้งหมด"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ตั้งค่าการกำหนดค่า"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "ส่วนลด"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "ส่วนลด %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "เปอร์เซ็นต์ส่วนลด"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "สินค้าลดราคา"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "ไม่พบสินค้าลดราคา"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "ไม่มีภาษี"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "ส่วนลดการสั่งซื้อ"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "กำหนดค่าการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "POS ส่วนลดสินค้า"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "ภาษี: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "เปอร์เซ็นต์ส่วนลดเริ่มต้นเมื่อคลิกที่ปุ่มส่วนลด"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"ดูเหมือนว่าสินค้าส่วนลดจะกำหนดค่าไม่ถูกต้อง "
|
||||
"ตรวจสอบให้แน่ใจว่าถูกตั้งค่าสถานะเป็น 'สามารถขายได้' และ 'พร้อมขายหน้าร้าน'"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "สินค้าที่ใช้ในการรับส่วนลดบนทิกเก็ต"
|
134
i18n/tr.po
Normal file
134
i18n/tr.po
Normal file
@ -0,0 +1,134 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Yedigen, 2023
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Halil, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Global İndirim özelliğini kullanmak için bir indirim ürünü gereklidir. "
|
||||
"Ayarlamak için Satış Noktası > Yapılandırma > Ayarlar'a gidin."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Kasiyerin tüm siparişe indirim verebilmesine izin verin."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Yapılandırma Ayarları"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "İndirim"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "İndirim %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "İndirim Yüzde"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "İndirimli Ürün"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "İndirimli ürün bulunamadı"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Vergi yok"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Sipariş İndirimleri"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Noktası Yapılandırması"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Pos İndirim Ürünü"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Vergi: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "İndirim düğmesine tıklandığında varsayılan indirim yüzdesi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"İndirimli ürün yanlış yapılandırılmış görünüyor. İndirimli ürünün, "
|
||||
"'Satılabilir' ve 'Satış Noktasında Mevcut' olarak işaretlendiğinden emin "
|
||||
"olun."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "İndirimi bilete uygulamak için kullanılan ürün."
|
126
i18n/uk.po
Normal file
126
i18n/uk.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Щоб скористатися функцією глобальної знижки, потрібен товар зі знижкою. "
|
||||
"Перейдіть до точки продажу > Конфігурація > Параметри, щоб налаштувати це."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Дозволити касиру робити знижку на все замовлення."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налаштування"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Знижка"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Знижка %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Відсоток знижки"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Товар знижки"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Не знайдено товару зі знижкою"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Немає податків"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Знижки на замовлення"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Налаштування точки продажу"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Товар знижки точки продажу"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Податок: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Типовий відсоток знижки при натисканні на кнопку Знижка"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Дисконтний товар здається неправильним. Переконайтеся, що його позначено як "
|
||||
"\"Можна продати\" та \"Доступно в точці продажу\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Товар, який використовується для застосування знижки на квиток."
|
126
i18n/vi.po
Normal file
126
i18n/vi.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Cần có một sản phẩm chiết khấu để sử dụng tính năng Giảm giá toàn bộ. Đi đến"
|
||||
" Điểm bán hàng > Cấu hình > Cài đặt để thiết lập."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Cho phép thu ngân chiết khấu toàn bộ đơn hàng."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cài đặt cấu hình"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "% chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Phần trăm chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Sản phẩm chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Không tìm thấy sản phẩm chiết khấu nào"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Không có thuế"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Chiết khấu đơn hàng"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Cấu hình điểm bán hàng"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Sản phẩm chiết khấu POS"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Thuế: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Phần trăm chiết khấu mặc định khi bấm vào nút Chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Sản phẩm chiết khấu có vẻ đã được cấu hình sai. Hãy bảo đảm gắn cờ sản phẩm "
|
||||
"là 'Có thể bán' và 'Có sẵn trong POS'. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Sản phẩm được dùng để áp dụng chiết khấu trên phiếu."
|
123
i18n/zh_CN.po
Normal file
123
i18n/zh_CN.po
Normal file
@ -0,0 +1,123 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "要使用全局折扣功能,需要有一个折扣产品。进入销售点 > 配置 > 设置来设置它。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "允许收银员在整张订单给出折扣."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置设置"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "折扣"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "折扣%"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "折扣百分比"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "折扣产品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "没有找到折扣商品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "无税"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "订单折扣"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS配置"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "POS折扣产品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "税率:%s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "点击折扣按钮时的默认折扣百分比"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr "折扣商品配置错误。请确认折扣商品被标记为可销售并且POS可用。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "用来在票面上应用折扣的产品。"
|
123
i18n/zh_TW.po
Normal file
123
i18n/zh_TW.po
Normal file
@ -0,0 +1,123 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 10:44+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tony Ng, 2024\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: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "要使用全局折扣功能,需要有一個折扣產品。進入銷售點 > 配置 > 設置來設置它。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "允許出納在整張訂單給出折扣."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "折扣"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "折扣百分比"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "折扣百分比"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "折扣產品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "未找到折扣產品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "無稅"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "訂單折扣"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Pos折扣產品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "稅:%s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "點擊折扣按鈕時的預設折扣百分比"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr "折扣產品似乎設定不當。確保它被標記為 \"可以出售\" 和 \"POS可用\"。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "在票據上應用折扣的產品。"
|
5
models/__init__.py
Normal file
5
models/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import pos_config
|
||||
from . import res_config_settings
|
42
models/pos_config.py
Normal file
42
models/pos_config.py
Normal file
@ -0,0 +1,42 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.osv.expression import OR
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = 'pos.config'
|
||||
|
||||
iface_discount = fields.Boolean(string='Order Discounts', help='Allow the cashier to give discounts on the whole order.')
|
||||
discount_pc = fields.Float(string='Discount Percentage', help='The default discount percentage when clicking on the Discount button', default=10.0)
|
||||
discount_product_id = fields.Many2one('product.product', string='Discount Product',
|
||||
domain="[('sale_ok', '=', True)]", help='The product used to apply the discount on the ticket.')
|
||||
|
||||
@api.model
|
||||
def _default_discount_value_on_module_install(self):
|
||||
configs = self.env['pos.config'].search([])
|
||||
open_configs = (
|
||||
self.env['pos.session']
|
||||
.search(['|', ('state', '!=', 'closed'), ('rescue', '=', True)])
|
||||
.mapped('config_id')
|
||||
)
|
||||
# Do not modify configs where an opened session exists.
|
||||
product = self.env.ref("point_of_sale.product_product_consumable", raise_if_not_found=False)
|
||||
for conf in (configs - open_configs):
|
||||
conf.discount_product_id = product if conf.module_pos_discount and product and (not product.company_id or product.company_id == conf.company_id) else False
|
||||
|
||||
def open_ui(self):
|
||||
for config in self:
|
||||
if not self.current_session_id and config.module_pos_discount and not config.discount_product_id:
|
||||
raise UserError(_('A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it.'))
|
||||
return super().open_ui()
|
||||
|
||||
def _get_special_products(self):
|
||||
res = super()._get_special_products()
|
||||
return res | self.env['pos.config'].search([]).mapped('discount_product_id')
|
||||
|
||||
def _get_available_product_domain(self):
|
||||
domain = super()._get_available_product_domain()
|
||||
return OR([domain, [('id', '=', self.discount_product_id.id)]])
|
22
models/res_config_settings.py
Normal file
22
models/res_config_settings.py
Normal file
@ -0,0 +1,22 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models, api
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
# pos.config fields
|
||||
pos_discount_pc = fields.Float(related='pos_config_id.discount_pc', readonly=False)
|
||||
pos_discount_product_id = fields.Many2one('product.product', compute='_compute_pos_discount_product_id', store=True, readonly=False)
|
||||
|
||||
@api.depends('company_id', 'pos_module_pos_discount', 'pos_config_id')
|
||||
def _compute_pos_discount_product_id(self):
|
||||
default_product = self.env.ref("point_of_sale.product_product_consumable", raise_if_not_found=False) or self.env['product.product']
|
||||
for res_config in self:
|
||||
discount_product = res_config.pos_config_id.discount_product_id or default_product
|
||||
if res_config.pos_module_pos_discount and (not discount_product.company_id or discount_product.company_id == res_config.company_id):
|
||||
res_config.pos_discount_product_id = discount_product
|
||||
else:
|
||||
res_config.pos_discount_product_id = False
|
@ -0,0 +1,99 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { ProductScreen } from "@point_of_sale/app/screens/product_screen/product_screen";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
import { NumberPopup } from "@point_of_sale/app/utils/input_popups/number_popup";
|
||||
import { ErrorPopup } from "@point_of_sale/app/errors/popups/error_popup";
|
||||
import { Component } from "@odoo/owl";
|
||||
import { usePos } from "@point_of_sale/app/store/pos_hook";
|
||||
import { parseFloat } from "@web/views/fields/parsers";
|
||||
|
||||
export class DiscountButton extends Component {
|
||||
static template = "pos_discount.DiscountButton";
|
||||
|
||||
setup() {
|
||||
this.pos = usePos();
|
||||
this.popup = useService("popup");
|
||||
}
|
||||
async click() {
|
||||
var self = this;
|
||||
const { confirmed, payload } = await this.popup.add(NumberPopup, {
|
||||
title: _t("Discount Percentage"),
|
||||
startingValue: this.pos.config.discount_pc,
|
||||
isInputSelected: true,
|
||||
});
|
||||
if (confirmed) {
|
||||
const val = Math.max(0, Math.min(100, parseFloat(payload)));
|
||||
await self.apply_discount(val);
|
||||
}
|
||||
}
|
||||
|
||||
async apply_discount(pc) {
|
||||
const order = this.pos.get_order();
|
||||
const lines = order.get_orderlines();
|
||||
const product = this.pos.db.get_product_by_id(this.pos.config.discount_product_id[0]);
|
||||
if (product === undefined) {
|
||||
await this.popup.add(ErrorPopup, {
|
||||
title: _t("No discount product found"),
|
||||
body: _t(
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be Sold' and 'Available in Point of Sale'."
|
||||
),
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
// Remove existing discounts
|
||||
lines
|
||||
.filter((line) => line.get_product() === product)
|
||||
.forEach((line) => order._unlinkOrderline(line));
|
||||
|
||||
// Add one discount line per tax group
|
||||
const linesByTax = order.get_orderlines_grouped_by_tax_ids();
|
||||
for (const [tax_ids, lines] of Object.entries(linesByTax)) {
|
||||
// Note that tax_ids_array is an Array of tax_ids that apply to these lines
|
||||
// That is, the use case of products with more than one tax is supported.
|
||||
const tax_ids_array = tax_ids
|
||||
.split(",")
|
||||
.filter((id) => id !== "")
|
||||
.map((id) => Number(id));
|
||||
|
||||
const baseToDiscount = order.calculate_base_amount(
|
||||
tax_ids_array,
|
||||
lines.filter((ll) => ll.isGlobalDiscountApplicable())
|
||||
);
|
||||
|
||||
// We add the price as manually set to avoid recomputation when changing customer.
|
||||
const discount = (-pc / 100.0) * baseToDiscount;
|
||||
if (discount < 0) {
|
||||
order.add_product(product, {
|
||||
price: discount,
|
||||
lst_price: discount,
|
||||
tax_ids: tax_ids_array,
|
||||
merge: false,
|
||||
description:
|
||||
`${pc}%, ` +
|
||||
(tax_ids_array.length
|
||||
? _t(
|
||||
"Tax: %s",
|
||||
tax_ids_array
|
||||
.map((taxId) => this.pos.taxes_by_id[taxId].amount + "%")
|
||||
.join(", ")
|
||||
)
|
||||
: _t("No tax")),
|
||||
extras: {
|
||||
price_type: "automatic",
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ProductScreen.addControlButton({
|
||||
component: DiscountButton,
|
||||
condition: function () {
|
||||
const { module_pos_discount, discount_product_id } = this.pos.config;
|
||||
return module_pos_discount && discount_product_id;
|
||||
},
|
||||
});
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
|
||||
<t t-name="pos_discount.DiscountButton">
|
||||
<span class="control-button js_discount btn btn-light rounded-0 fw-bolder" t-on-click="() => this.click()">
|
||||
<i class="fa fa-tag me-1"></i>
|
||||
<span> </span>
|
||||
<span>Discount</span>
|
||||
</span>
|
||||
</t>
|
||||
|
||||
</templates>
|
16
static/src/overrides/models/models.js
Normal file
16
static/src/overrides/models/models.js
Normal file
@ -0,0 +1,16 @@
|
||||
/* @odoo-modules */
|
||||
|
||||
import { Orderline } from "@point_of_sale/app/store/models";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
|
||||
patch(Orderline.prototype, {
|
||||
/**
|
||||
* Checks if the current line applies for a global discount from `pos_discount.DiscountButton`.
|
||||
* @returns Boolean
|
||||
*/
|
||||
isGlobalDiscountApplicable() {
|
||||
return !(
|
||||
this.pos.config.tip_product_id && this.product.id === this.pos.config.tip_product_id[0]
|
||||
);
|
||||
},
|
||||
});
|
6
views/pos_config_views.xml
Normal file
6
views/pos_config_views.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<function model="pos.config" name="_default_discount_value_on_module_install"/>
|
||||
</data>
|
||||
</odoo>
|
20
views/res_config_settings_views.xml
Normal file
20
views/res_config_settings_views.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.pos_discount</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="point_of_sale.res_config_settings_view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<div id="warning_text_pos_discount" position="replace">
|
||||
<div class="row">
|
||||
<label string="Discount Product" for="pos_discount_product_id" class="col-lg-3 o_light_label"/>
|
||||
<field name="pos_discount_product_id" required="pos_module_pos_discount"/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label string="Discount %" for="pos_discount_pc" class="col-lg-3 o_light_label"/>
|
||||
<field name="pos_discount_pc"/>
|
||||
</div>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user