mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-22 23:02:09 +02:00
19.0 vanilla
This commit is contained in:
parent
6e54c1af6c
commit
3ca647e428
1087 changed files with 132065 additions and 108499 deletions
|
|
@ -15,37 +15,14 @@ pip install odoo-bringout-oca-ocb-pos_discount
|
|||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- point_of_sale
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Point of Sale Discounts
|
||||
- **Version**: 1.0
|
||||
- **Category**: Sales/Point of Sale
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `pos_discount`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/pos_discount
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -16,15 +16,22 @@ discount to a customer.
|
|||
""",
|
||||
'depends': ['point_of_sale'],
|
||||
'data': [
|
||||
'data/pos_discount_data.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/pos_config_views.xml',
|
||||
],
|
||||
],
|
||||
'installable': True,
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_discount/static/src/js/**/*',
|
||||
'pos_discount/static/src/xml/**/*',
|
||||
'point_of_sale._assets_pos': [
|
||||
'pos_discount/static/src/**/*',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'pos_discount/static/tests/tours/**/*',
|
||||
],
|
||||
'web.assets_unit_tests': [
|
||||
'pos_discount/static/tests/unit/**/*'
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="product_product_consumable" model="product.product">
|
||||
<field name="name">Discount</field>
|
||||
<field name="available_in_pos">False</field>
|
||||
<field name="standard_price">0.00</field>
|
||||
<field name="list_price">0.00</field>
|
||||
<field name="weight">0.00</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="categ_id" eval="ref('product.product_category_services', raise_if_not_found=False)"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="default_code">DISC</field>
|
||||
<field name="purchase_ok">False</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -1,27 +1,26 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\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"
|
||||
"Language: af\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."
|
||||
"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
|
||||
|
|
@ -36,10 +35,9 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
msgstr "Afslag"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
|
|
@ -48,10 +46,9 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: 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 ""
|
||||
|
||||
|
|
@ -63,15 +60,13 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -97,8 +92,7 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -110,11 +104,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
|
|||
|
|
@ -1,50 +1,53 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Malaz Siddig Elsayed Abuidris (msea)" <msea@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-20 13:21+0000\n"
|
||||
"Last-Translator: \"Malaz Siddig Elsayed Abuidris (msea)\" <msea@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/ar/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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 "السماح لأمين الصندوق بمنح خصومات على الطلب بأكمله. "
|
||||
msgstr "السماح لأمين الصندوق بمنح خصومات على الطلب بأكمله."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
msgstr "تهيئة الإعدادات"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "الخصم"
|
||||
|
||||
|
|
@ -55,10 +58,9 @@ msgstr "الخصم %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "نسبة الخصم"
|
||||
|
||||
|
|
@ -69,64 +71,83 @@ msgid "Discount Product"
|
|||
msgstr "منتج الخصم"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "لم يتم العثور على منتج خصم "
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "بلا ضريبة "
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "خطأ"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "لم يتم العثور على منتج خصم"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "خصومات الطلبات "
|
||||
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 "جلسة نقطة البيع"
|
||||
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 "منتج خصم نقطة البيع "
|
||||
msgstr "منتج خصم نقطة البيع"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "الضريبة: %s "
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
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 "نسبة الخصم الافتراضية عند الضغط على زر الخصم "
|
||||
msgstr "نسبة الخصم الافتراضية عند الضغط على زر الخصم"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 "المنتج المستخدَم لتطبيق الخصم على التذكرة. "
|
||||
msgstr "المنتج المستخدَم لتطبيق الخصم على التذكرة."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "بلا ضريبة "
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "جلسة نقطة البيع"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "الضريبة: %s "
|
||||
|
|
|
|||
|
|
@ -1,33 +1,30 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\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"
|
||||
"Language: az\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."
|
||||
"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
|
||||
|
|
@ -42,22 +39,21 @@ msgstr "Parametrləri Konfiqurasiya edin"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Endirim"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Endirim %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 ""
|
||||
|
||||
|
|
@ -65,20 +61,32 @@ msgstr ""
|
|||
#: 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 "Endirimli məhsul"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -89,12 +97,7 @@ msgstr ""
|
|||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Nöqtəsi Konfiqurasiyası"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Nöqtəsi Sessiyası"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
|
|
@ -102,10 +105,8 @@ msgid "Pos Discount Product"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -116,14 +117,19 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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/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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
|
@ -1,34 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Nikola Iliev, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Petko Karamotchev, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/bg/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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
|
||||
|
|
@ -43,8 +43,8 @@ msgstr "Настройки"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Отстъпка"
|
||||
|
||||
|
|
@ -55,10 +55,9 @@ msgstr "Отстъпка %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "Процент отстъпка"
|
||||
|
||||
|
|
@ -69,44 +68,49 @@ msgid "Discount Product"
|
|||
msgstr "Продукт с отстъпка"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Не е намерен продукт с отстъпка."
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Поръчайте отстъпки "
|
||||
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 "Продукт за отстъпка в ПОС"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -114,22 +118,25 @@ msgstr ""
|
|||
#: 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Продуктът за отстъпка изглежда неправилно конфигуриран. Уверете се, че е "
|
||||
"маркиран като „Може да се продава“ и „Наличен в точка на продажба (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 ""
|
||||
"Продуктът, използван за прилагане на отстъпката върху касовата бележка."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Сесия на център за продажби"
|
||||
|
|
|
|||
|
|
@ -1,134 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+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: \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
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
"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."
|
||||
|
||||
# taken from hr.po
|
||||
#. 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."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Popust %"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Postotak popusta"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nije pronađen proizvod popusta"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "No tax"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Popusti narudžbe"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
# taken from hr.po
|
||||
#. 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 "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
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 "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,37 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2022
|
||||
# Jordi Bancells <jordibancells@pangea.org>, 2022
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# jabelchi, 2022
|
||||
# Bàrbara Partegàs <barbararof@gmail.com>, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:30+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/ca/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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-"
|
||||
|
|
@ -40,17 +41,17 @@ 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 "Permetre al caixer fer descomptes en tota la comanda. "
|
||||
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 "Ajustos de configuració"
|
||||
msgstr "Paràmetres de configuració"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Descompte"
|
||||
|
||||
|
|
@ -61,10 +62,9 @@ msgstr "Descompte %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 %"
|
||||
|
||||
|
|
@ -74,46 +74,51 @@ msgstr "Descompte en %"
|
|||
msgid "Discount Product"
|
||||
msgstr "Producte en descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
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/js/DiscountButton.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 "
|
||||
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,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessió 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Impostos: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -124,11 +129,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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\"."
|
||||
|
|
@ -137,3 +141,18 @@ msgstr ""
|
|||
#: 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Sense impostos"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sessió del Punt de Venda"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Impostos: %s"
|
||||
|
|
|
|||
|
|
@ -1,33 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Marta Wacławek, 2025
|
||||
#
|
||||
# Jiří Podhorecký, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:45+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/cs/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.14.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."
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point "
|
||||
"of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"K použití funkce Globální sleva je třeba mít produkt se slevou. Nastavte ji "
|
||||
"v části Prodejní místo > Konfigurace > Nastavení."
|
||||
|
|
@ -40,26 +43,25 @@ 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 "Nastavení konfigurace"
|
||||
msgstr "Konfigurační nastavení"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
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 %"
|
||||
msgstr "Sleva v %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -70,18 +72,30 @@ msgid "Discount Product"
|
|||
msgstr "Zlevněný produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenalezen žádný slevový produkt"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenalezen žádný slevový produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -93,22 +107,15 @@ msgstr "Objednat slevy"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavení prodejního místa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sezení 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 "Slevový produkt PoS"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -118,11 +125,10 @@ msgstr "Výchozí procentuální sleva při kliknutí na tlačítko Sleva"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
|
|
@ -131,3 +137,12 @@ msgstr ""
|
|||
#: 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 použitý k uplatnění slevy na listek."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Slevovou položku nelze upravovat."
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sezení Prodejního místa"
|
||||
|
|
|
|||
|
|
@ -1,50 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:10+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/da/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point "
|
||||
"of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"En rabatvare er nødvendig for at bruge Global Rabat-funktionen. Gå til Point"
|
||||
" of Sale > Konfiguration > Indstillinger for at indstille det."
|
||||
"Et rabatprodukt er nødvendig for at bruge Global Rabat-funktionen. Gå til "
|
||||
"POS > Konfiguration > Indstillinger for at indstille det."
|
||||
|
||||
#. 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."
|
||||
msgstr "Gør det muligt for 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"
|
||||
msgstr "Konfigurationsindstillinger"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Rabat"
|
||||
|
||||
|
|
@ -55,10 +56,9 @@ msgstr "Rabat %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -69,18 +69,30 @@ msgid "Discount Product"
|
|||
msgstr "Giv rabat på et produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Der blev ikke fundet noget rabatprodukt"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Ingen moms"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Der blev ikke fundet noget rabatprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -90,43 +102,44 @@ 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,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS session"
|
||||
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 "Pos rabatprodukt"
|
||||
msgstr "POS-rabatprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Moms: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. 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 "Standard rabatprocent, når der klikkes på Rabat-knappen"
|
||||
msgstr "Standard-rabatprocent, når der klikkes på Rabatknappen"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
"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 "Produktet brugt til at anvende rabatten på billetten."
|
||||
msgstr "Produktet brugt til at tilføje rabatten på billetten."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "POS session"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-28 09:08+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/de/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.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."
|
||||
"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 "
|
||||
|
|
@ -45,8 +48,8 @@ msgstr "Konfigurationseinstellungen"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
|
|
@ -57,10 +60,9 @@ msgstr "Rabatt %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -71,18 +73,30 @@ msgid "Discount Product"
|
|||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Kein Rabattprodukt gefunden"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Keine Steuer"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Kein Rabattprodukt gefunden"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -94,22 +108,15 @@ msgstr "Auftragsrabatte"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassensystem-Konfiguration"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassensitzung"
|
||||
|
||||
#. 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Steuer: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -120,11 +127,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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“ "
|
||||
|
|
@ -134,3 +140,18 @@ msgstr ""
|
|||
#: 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Sie können eine Rabattzeile nicht bearbeiten."
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Keine Steuer"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Point of Sale Sitzung"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Steuer: %s"
|
||||
|
|
|
|||
|
|
@ -1,60 +1,100 @@
|
|||
# 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
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Panagiotis karampaglis <panosdotk@gmail.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 13:16+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"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-21 05:27+0000\n"
|
||||
"Last-Translator: Panagiotis karampaglis <panosdotk@gmail.com>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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 "Να επιτρέπεται ο ταμίας να δίνει έκπτωση σε όλη την παραγγελία. "
|
||||
msgstr "Να επιτρέπεται ο ταμίας να δίνει έκπτωση σε όλη την παραγγελία."
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount_templates.xml:6
|
||||
#, python-format
|
||||
#: 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/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Έκπτωση"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.pos_config_view_form_inherit_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/discount.js:14
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#, python-format
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
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.pos_config_view_form_inherit_pos_discount
|
||||
#: 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/discount.js:28
|
||||
#, python-format
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -69,20 +109,36 @@ msgid "Point of Sale Configuration"
|
|||
msgstr "Διαμόρφωση του Σταθμού Εργασίας"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
msgid "The default discount percentage"
|
||||
msgstr "Προεπιλεγμένο ποσοστό έκπτωσης"
|
||||
#: 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/discount.js:29
|
||||
#, python-format
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
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/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 model the discount."
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,68 +0,0 @@
|
|||
# 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: 2016-08-18 14:06+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
|
||||
#: 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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
msgid "The default discount percentage."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgstr ""
|
||||
|
|
@ -1,34 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Patricia Lorenzo Bartolomé, 2023
|
||||
# Daniel Duque <danieldqmrt@gmail.com>, 2024
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Noemi Pla Garcia (nopl)" <nopl@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-31 11:35+0000\n"
|
||||
"Last-Translator: \"Noemi Pla Garcia (nopl)\" <nopl@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/es/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
|
||||
"0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.14.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."
|
||||
"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 de descuento para usar la función de descuento "
|
||||
"global. Se configura en Punto de venta > Configuración > Ajustes."
|
||||
|
|
@ -45,8 +47,8 @@ msgstr "Ajustes de configuración"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
|
|
@ -57,10 +59,9 @@ msgstr "Descuento %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -71,18 +72,30 @@ msgid "Discount Product"
|
|||
msgstr "Producto de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "No se ha encontrado ningún producto de descuento"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Sin impuestos"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "No se ha encontrado ningún producto de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -94,22 +107,15 @@ msgstr "Descuentos de pedidos"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del TPV"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión 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 de descuento de TPV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Impuesto: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -120,16 +126,30 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
"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 recibo."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "No se puede editar una línea de descuento."
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Sin impuestos"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sesión TPV"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Impuesto:%s"
|
||||
|
|
|
|||
|
|
@ -1,36 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Fernanda Alvarez (mfar)" <mfar@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-30 17:18+0000\n"
|
||||
"Last-Translator: \"Fernanda Alvarez (mfar)\" <mfar@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/pos_discount/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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. Ve a Punto"
|
||||
" de venta > Configuración > Ajustes para configurarlo."
|
||||
"La función de descuento global necesita un producto de descuento. Ve a Punto "
|
||||
"de venta > Configuración > Ajustes para configurarlo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -44,8 +42,8 @@ msgstr "Ajustes de configuración"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
|
|
@ -56,10 +54,9 @@ msgstr "% de descuento"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -69,34 +66,41 @@ msgstr "Porcentaje de descuento"
|
|||
msgid "Discount Product"
|
||||
msgstr "Producto de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "No se encontró ningún producto de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.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 "Solicitar descuento"
|
||||
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 PdV"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión del punto de venta"
|
||||
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
|
||||
|
|
@ -104,11 +108,9 @@ msgid "Pos Discount Product"
|
|||
msgstr "Producto de descuento de PdV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Impuesto: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -120,11 +122,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Parece que el producto de descuento está mal configurado. Revisa que las "
|
||||
"opciones \"Se puede vender\" y \"Disponible en el punto de venta\" están "
|
||||
|
|
@ -134,3 +135,9 @@ msgstr ""
|
|||
#: 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 recibo."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "No puedes editar una línea de descuento."
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
# 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: 2016-08-18 14:06+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
|
||||
#: 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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Descuentos"
|
||||
|
||||
#. 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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "Porcentaje de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ msgstr "El producto es usado para modelar el descuento"
|
||||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:06+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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/"
|
||||
|
|
@ -19,50 +19,101 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
#: 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
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
#: 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
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
#: 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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
msgid "The default discount percentage."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,74 +0,0 @@
|
|||
# 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: 2016-08-18 14:06+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
|
||||
#: 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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Descuentos"
|
||||
|
||||
#. 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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "El porcentaje de descuento predeterminado"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgstr "pos.config"
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ msgstr "El producto usado para especificar el descuento"
|
||||
|
|
@ -1,68 +0,0 @@
|
|||
# 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: 2016-08-18 14:06+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
|
||||
#: 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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
msgid "The default discount percentage."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgstr ""
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
# 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: 2016-08-18 14:06+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
|
||||
#: 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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Descuentos"
|
||||
|
||||
#. 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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "El porcentaje de descuento predeterminado"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgstr "Configuración del TPV"
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ msgstr "El producto que se utiliza para modelar el descuento"
|
||||
|
|
@ -1,73 +0,0 @@
|
|||
# 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: 2016-08-18 14:06+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
|
||||
#: 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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Descuentos"
|
||||
|
||||
#. 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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "El porcentaje de descuento predeterminad"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgstr "Configuración POS "
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ msgstr "El producto usado para especificar el descuento"
|
||||
|
|
@ -1,73 +0,0 @@
|
|||
# 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: 2016-08-18 14:06+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
|
||||
#: 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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Porcentaje de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto de Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Descuentos"
|
||||
|
||||
#. 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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "Porcentaje de descuento por defecto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgstr "pos.config"
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ msgstr "El producto usado para modelar el descuento"
|
||||
|
|
@ -1,37 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Wanradt Koell <wanradt@gmail.com>, 2022
|
||||
# Maidu Targama <m.targama@gmail.com>, 2022
|
||||
# Leaanika Randmets, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"Language: 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."
|
||||
"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."
|
||||
"Ü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
|
||||
|
|
@ -45,8 +44,8 @@ msgstr "Seadistused"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Allahindlus"
|
||||
|
||||
|
|
@ -57,10 +56,9 @@ msgstr "Allahindlus %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -71,18 +69,30 @@ msgid "Discount Product"
|
|||
msgstr "Allahinnatud toode"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Allahindlusega tooteid ei leitud"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Maksudeta"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Allahindlusega tooteid ei leitud"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -94,22 +104,15 @@ msgstr "Ostu allahindlused"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa seadistused"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassa Sessioon"
|
||||
|
||||
#. 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Maksud: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -119,11 +122,10 @@ msgstr "Vaikimisi allahindluse protsent, kui klikkida nupule \"Allahindlus\"."
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
|
|
@ -132,3 +134,18 @@ msgstr ""
|
|||
#: 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Maksudeta"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Kassa Sessioon"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Maksud: %s"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:06+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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"
|
||||
|
|
@ -18,54 +18,101 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
#: 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
|
||||
msgid "Discount"
|
||||
msgstr "Deskontua"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
#: 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
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Deskontua ehunekotan"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
#: 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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Deskontuak"
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "Deskontua ehunekotan"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "pos.config"
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ msgstr "Deskontua modelatzeko erabiltzen den produktua"
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,34 +1,33 @@
|
|||
# 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
|
||||
# Hanna Kheradroosta, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Hanna Kheradroosta, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"Language: 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."
|
||||
"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
|
||||
|
|
@ -43,8 +42,8 @@ msgstr "تنظیمات پیکربندی"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "تخفیف"
|
||||
|
||||
|
|
@ -55,10 +54,9 @@ msgstr "تخفیف %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "درصد تخفیف"
|
||||
|
||||
|
|
@ -69,19 +67,31 @@ msgid "Discount Product"
|
|||
msgstr "تخفیف محصول"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "محصول تخفیفی پیدا نشد"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "محصول تخفیفی پیدا نشد"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -92,21 +102,14 @@ msgstr "دیگر تخفیفها"
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -117,14 +120,22 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "جلسه پایانه فروش"
|
||||
|
|
|
|||
|
|
@ -1,35 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Saara Hakanen <sahak@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+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"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-30 08:31+0000\n"
|
||||
"Last-Translator: Saara Hakanen <sahak@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
|
|
@ -46,8 +48,8 @@ msgstr "Asetukset"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Alennus"
|
||||
|
||||
|
|
@ -58,10 +60,9 @@ msgstr "Alennus %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -72,18 +73,30 @@ msgid "Discount Product"
|
|||
msgstr "Alennustuote"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Alennustuotetta ei löytynyt"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "ei veroa"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Alennustuotetta ei löytynyt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -93,12 +106,7 @@ 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,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassapäätteen istunto"
|
||||
msgstr "Kassan asetukset"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
|
|
@ -106,11 +114,9 @@ msgid "Pos Discount Product"
|
|||
msgstr "Kassan alennustuote"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Vero: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -120,16 +126,30 @@ msgstr "Oletusarvoinen alennusprosentti, kun napsautat Alennus-painiketta"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
"Alennustuote on väärin konfiguroitu. Varmista, että se on merkitty 'Voidaan "
|
||||
"myydä' ja 'Saatavilla Kassajärjestelmässä'."
|
||||
|
||||
#. 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Et voi muokata alennusriviä."
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "ei veroa"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Kassapäätteen istunto"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Vero: %s"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:06+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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"
|
||||
|
|
@ -18,50 +18,101 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
#: 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
|
||||
msgid "Discount"
|
||||
msgstr "Avsláttur"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
#: 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
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
#: 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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
msgid "The default discount percentage."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,32 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Manon Rondou (ronm)" <ronm@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-15 09:12+0000\n"
|
||||
"Last-Translator: \"Manon Rondou (ronm)\" <ronm@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/fr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
|
|
@ -44,8 +48,8 @@ msgstr "Paramètres de configuration"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Remise"
|
||||
|
||||
|
|
@ -56,10 +60,9 @@ msgstr "Remise %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -70,18 +73,30 @@ msgid "Discount Product"
|
|||
msgstr "Produit de remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Aucun produit de remise trouvé"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Aucune taxe"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Aucun produit de remise trouvé"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -93,22 +108,15 @@ msgstr "Remises de la commande"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuration du point de vente"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Session 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Taxe : %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -118,16 +126,30 @@ 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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\"."
|
||||
"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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Vous ne pouvez pas modifier une ligne de remise."
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Aucune taxe"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Session du point de vente"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Taxe : %s"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,30 @@
|
|||
# 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 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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"
|
||||
"Language: gu\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."
|
||||
"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
|
||||
|
|
@ -40,8 +39,7 @@ msgstr "Config Settings"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
|
||||
|
|
@ -52,10 +50,9 @@ msgstr "Discount %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: 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"
|
||||
|
||||
|
|
@ -67,15 +64,13 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -101,8 +96,7 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -114,11 +108,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
|
|||
|
|
@ -1,36 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# tomerlayline, 2024
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# or balmas <or@laylinetech.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: tomerlayline, 2024\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 02:31+0000\n"
|
||||
"Last-Translator: or balmas <or@laylinetech.com>\n"
|
||||
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/he/>\n"
|
||||
"Language: 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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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
|
||||
|
|
@ -44,22 +44,21 @@ msgstr "הגדר הגדרות"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr " % הנחה"
|
||||
msgstr "% הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "אחוז הנחה"
|
||||
|
||||
|
|
@ -70,19 +69,31 @@ msgid "Discount Product"
|
|||
msgstr "מוצר הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "לא נמצא מוצר הנחה"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "לא נמצא מוצר הנחה"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -93,41 +104,42 @@ msgstr "הנחות בהזמנה"
|
|||
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 "pos מוצר הנחה"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
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 "אחוז ההנחה ברירת המחדל כאשר לוחצים על כפתור ההנחה"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 "המוצר המשמש להחלת ההנחה על הכרטיס."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "משמרת קופה "
|
||||
|
|
|
|||
|
|
@ -1,31 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\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."
|
||||
"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
|
||||
|
|
@ -36,26 +32,25 @@ msgstr ""
|
|||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "कॉन्फ़िगरेशन सेटिंग"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "छूट"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "छूट %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 ""
|
||||
|
||||
|
|
@ -66,17 +61,29 @@ msgid "Discount Product"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -89,21 +96,14 @@ msgstr ""
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -114,14 +114,19 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,32 +1,32 @@
|
|||
# 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 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+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"
|
||||
"Language: hr\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"
|
||||
"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."
|
||||
"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
|
||||
|
|
@ -41,8 +41,8 @@ msgstr "Postavke"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
|
|
@ -53,10 +53,9 @@ msgstr "Popust %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -67,19 +66,31 @@ msgid "Discount Product"
|
|||
msgstr "Proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nije pronađen proizvod popusta"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nije pronađen proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -90,21 +101,14 @@ msgstr "Popusti narudžbe"
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -115,11 +119,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
|
|
@ -128,3 +131,12 @@ msgstr ""
|
|||
#: 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Smjena POS-a"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# krnkris, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 19:46+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/hu/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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
|
||||
|
|
@ -39,12 +40,12 @@ 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"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Kedvezmény"
|
||||
|
||||
|
|
@ -55,10 +56,9 @@ msgstr "Kedvezmény %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -66,20 +66,32 @@ msgstr "Árengedmény százaléka"
|
|||
#: 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"
|
||||
msgstr "Termék kedvezmény"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -90,12 +102,7 @@ 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,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Értékesítési Pont Értékesítési folyamat"
|
||||
msgstr "Értékesítési pont konfiguráció"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
|
|
@ -103,10 +110,8 @@ msgid "Pos Discount Product"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -117,14 +122,22 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Értékesítési Pont Értékesítési folyamat"
|
||||
|
|
|
|||
|
|
@ -1,123 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\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/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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
|
@ -1,35 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Abe Manyo (abem)" <abem@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-20 03:04+0000\n"
|
||||
"Last-Translator: \"Abe Manyo (abem)\" <abem@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/id/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
"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
|
||||
|
|
@ -43,8 +46,8 @@ msgstr "Pengaturan Konfigurasi"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Diskon"
|
||||
|
||||
|
|
@ -55,10 +58,9 @@ msgstr "Diskon %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -69,18 +71,30 @@ msgid "Discount Product"
|
|||
msgstr "Produk Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Tidak ada diskon produk yang ditemukan"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Tidak ada pajak"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Tidak ada diskon produk yang ditemukan"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -92,22 +106,15 @@ msgstr "Diskon Order"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurasi Point of Sale"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesi 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Pajak: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -117,11 +124,10 @@ msgstr "Persentase diskon default saat mengeklik pada tombol Diskon"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
|
|
@ -130,3 +136,12 @@ msgstr ""
|
|||
#: 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Anda tidak dapat mengedit baris diskon."
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sesi Point of Sale"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,26 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\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"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\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."
|
||||
"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
|
||||
|
|
@ -36,14 +31,13 @@ msgstr ""
|
|||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Stillingarvalkostir"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
msgstr "Afsláttur"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
|
|
@ -52,10 +46,9 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: 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 ""
|
||||
|
||||
|
|
@ -67,15 +60,13 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -87,7 +78,7 @@ msgstr ""
|
|||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
msgstr "Uppsetning kassakerfis"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
|
|
@ -101,8 +92,7 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -114,11 +104,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
|
|||
|
|
@ -1,33 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2022
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marianna Ciofani (cima)" <cima@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-16 17:04+0000\n"
|
||||
"Last-Translator: \"Marianna Ciofani (cima)\" <cima@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/it/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
|
||||
"0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
|
|
@ -44,8 +46,8 @@ msgstr "Impostazioni di configurazione"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Sconto"
|
||||
|
||||
|
|
@ -56,10 +58,9 @@ msgstr "Sconto %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -70,18 +71,30 @@ msgid "Discount Product"
|
|||
msgstr "Prodotto sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nessun prodotto sconto trovato"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Nessuna imposta"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Errore"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nessun prodotto sconto trovato"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -93,22 +106,15 @@ msgstr "Sconti ordine"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurazione punto vendita"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessione 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Imposta: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Prodotto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -119,17 +125,25 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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. Controllare "
|
||||
"che sia contrassegnato come \"Può essere venduto\" e \"Disponibile nel punto"
|
||||
" vendita\"."
|
||||
"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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Non puoi modificare una riga di sconto."
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sessione punto vendita"
|
||||
|
|
|
|||
|
|
@ -1,51 +1,54 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2025
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Junko Augias (juau)" <juau@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Junko Augias, 2025\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-06 07:13+0000\n"
|
||||
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/ja/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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 "全体割引機能を使用するには、割引プロダクトが必要です。POS > 設定 > 管理設定で設定して下さい。"
|
||||
"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 "キャッシャーでのオーダ全体に対する値引を許可"
|
||||
msgstr "キャッシャーが注文全体に割引を適用できるようにします。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
msgstr "構成設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "値引"
|
||||
msgstr "割引"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
|
|
@ -54,10 +57,9 @@ msgstr "割引%"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "割引率"
|
||||
|
||||
|
|
@ -68,18 +70,30 @@ msgid "Discount Product"
|
|||
msgstr "割引プロダクト"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "割引プロダクトが見つかりません"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "税なし"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "エラー"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "割引プロダクトが見つかりません"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -91,22 +105,15 @@ msgstr "オーダ値引"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "税:%s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "プロダクト"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -116,14 +123,24 @@ msgstr "割引ボタンをクリックしたときのデフォルトの割引率
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr "割引プロダクトの設定が間違っているようです。'販売可能'と'POSで利用可能'のフラグが立っていることを確認して下さい。"
|
||||
"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 "チケットに割引を適用するために使用されるプロダクト"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "割引明細行を編集することはできません。"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "POSセッション"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:06+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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"
|
||||
|
|
@ -18,50 +18,101 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
#: 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
|
||||
msgid "Discount"
|
||||
msgstr "ფასდაკლება"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
#: 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
|
||||
msgid "Discount Percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
#: 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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
msgid "The default discount percentage."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:06+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+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"
|
||||
|
|
@ -18,51 +18,116 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
#: 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/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Tuǧǧit"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
#: 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/app/screens/product_screen/control_buttons/control_buttons.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
|
||||
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: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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Tuǧǧiyin"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "Amfidi n tuǧǧit"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "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
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
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/app/services/pos_store.js:0
|
||||
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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,99 +1,92 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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"
|
||||
"Language: km\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."
|
||||
"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 "អនុញ្ញាតឱ្យអ្នកគិតលុយផ្តល់ការបញ្ចុះតម្លៃលើការបញ្ជាទិញទាំងមូល។"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "កំណត់រចនាសម្ព័ន្ធ"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.xml:0
|
||||
msgid "Discount"
|
||||
msgstr "បញ្ចុះតម្លៃ"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "បញ្ចុះតំលៃ%"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: 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 "ភាគរយបញ្ចុះតំលៃ"
|
||||
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 "ផលិតផលបញ្ចុះតំលៃ"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "រកមិនឃើញផលិតផលបញ្ចុះតម្លៃ"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "ការបញ្ចុះតម្លៃបញ្ជាទិញ"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "ចំណុចនៃការកំណត់រចនាសម្ព័ន្ធលក់"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ចំណុចនៃវគ្គលក់"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
|
|
@ -102,8 +95,7 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -115,14 +107,11 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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
|
||||
|
|
|
|||
|
|
@ -1,33 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kwanghee Park (kwpa)" <kwpa@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-23 02:30+0000\n"
|
||||
"Last-Translator: \"Kwanghee Park (kwpa)\" <kwpa@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/ko/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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 "전체 할인 기능을 사용하려면 할인 품목이 있어야 합니다. POS > 환경 설정 > 설정 메뉴로 이동하여 설정합니다."
|
||||
"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
|
||||
|
|
@ -37,48 +41,59 @@ msgstr "계산원이 전체 주문에 대해 할인을 제공하도록 허용하
|
|||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
msgstr "환경 설정"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "할인"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "할인 %"
|
||||
msgstr "할인율"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "할인 (%)"
|
||||
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 "할인 상품"
|
||||
msgstr "할인 품목"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "오류"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "할인 상품이 없습니다."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "세금 없음"
|
||||
msgstr "할인 품목이 없습니다."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -88,12 +103,7 @@ 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 "점포판매시스템 기간"
|
||||
msgstr "POS 환경 설정"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
|
|
@ -101,11 +111,9 @@ msgid "Pos Discount Product"
|
|||
msgstr "POS 할인 품목"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "세금: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "품목"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -115,14 +123,24 @@ msgstr "할인 버튼 클릭 시 적용되는 할인율 기본값"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr "할인 상품이 잘못 구성된 것 같습니다. '판매 가능' 및 'POS에서 사용 가능'으로 표시되어 있는지 확인하십시오."
|
||||
"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 "티켓에 할인을 적용 시 사용되는 품목입니다."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "점포판매시스템 기간"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"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."
|
||||
"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
|
||||
|
|
@ -36,8 +36,8 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -48,10 +48,9 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 ""
|
||||
|
||||
|
|
@ -62,17 +61,29 @@ msgid "Discount Product"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -85,21 +96,14 @@ msgstr ""
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -110,14 +114,19 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
@ -1,58 +1,76 @@
|
|||
# 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: 2019-08-12 11:31+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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-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"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount_templates.xml:6
|
||||
#, python-format
|
||||
#: 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
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.pos_config_view_form_inherit_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/discount.js:14
|
||||
#. 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
|
||||
#, python-format
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
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.pos_config_view_form_inherit_pos_discount
|
||||
#: 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/discount.js:28
|
||||
#, python-format
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -64,20 +82,36 @@ msgid "Point of Sale Configuration"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
msgid "The default discount percentage"
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/discount.js:29
|
||||
#, python-format
|
||||
#: 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
|
||||
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
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 model the discount."
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: sackda chanthasombath, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\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/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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
|
@ -1,33 +1,36 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/lt/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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
|
||||
|
|
@ -42,8 +45,8 @@ msgstr "Konfigūracijos nustatymai"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Nuolaida"
|
||||
|
||||
|
|
@ -54,10 +57,9 @@ msgstr "Nuolaida %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -68,19 +70,31 @@ msgid "Discount Product"
|
|||
msgstr "Nuolaidinis produktas"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nerasta nuolaidos produktas"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nerasta nuolaidos produktas"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -91,22 +105,15 @@ msgstr "Užsakymo nuolaidos"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pardavimo taško konfigūracija"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pardavimo taško sesija"
|
||||
|
||||
#. 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produktas"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -116,11 +123,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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\"."
|
||||
|
|
@ -129,3 +135,12 @@ msgstr ""
|
|||
#: 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Pardavimo taško sesija"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,31 @@
|
|||
# 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 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+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"
|
||||
"Language: 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"
|
||||
"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."
|
||||
"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
|
||||
|
|
@ -40,8 +40,8 @@ msgstr "Konfigurācijas uzstādījumi"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Atlaide"
|
||||
|
||||
|
|
@ -52,10 +52,9 @@ msgstr "Atlaide %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -66,18 +65,30 @@ msgid "Discount Product"
|
|||
msgstr "Atlaides prece"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nav atrasta atlaides prece"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Nav nodokļa"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nav atrasta atlaides prece"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -89,22 +100,15 @@ msgstr "Pasūtījuma atlaides"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pārdošanas punkta konfigurācija"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pārdošanas punkta sesija"
|
||||
|
||||
#. 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Nodoklis: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -114,14 +118,28 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Nav nodokļa"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Pārdošanas punkta sesija"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Nodoklis: %s"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:06+0000\n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+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/"
|
||||
|
|
@ -20,54 +20,101 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount.xml:6
|
||||
#, python-format
|
||||
#: 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
|
||||
msgid "Discount"
|
||||
msgstr "Попуст"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
#: 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
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Процент на попуст"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_product_id
|
||||
#: 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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.view_pos_config_form
|
||||
msgid "Discounts"
|
||||
msgstr "Попусти"
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/overrides/components/discount_button/discount_button.js:0
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage."
|
||||
msgstr "Процент на попуст"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid ""
|
||||
"The product used to record the discount. The ability to discount on the "
|
||||
"whole order will be disabled if this field is empty."
|
||||
#: 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_config
|
||||
msgid "pos.config"
|
||||
msgstr "pos.config"
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ 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
|
||||
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
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\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/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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
|
@ -1,33 +1,32 @@
|
|||
# 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 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+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"
|
||||
"Language: mn\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."
|
||||
"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
|
||||
|
|
@ -42,8 +41,8 @@ msgstr "Тохиргооны тохируулга"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Хөнгөлөлт"
|
||||
|
||||
|
|
@ -54,10 +53,9 @@ msgstr "Хөнгөлөлт %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "Хөнгөлөлтийн хувь"
|
||||
|
||||
|
|
@ -68,19 +66,31 @@ msgid "Discount Product"
|
|||
msgstr "Барааны хөнгөлөлт"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Хямдралтай бүтээгдэхүүн олдсонгүй"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Хямдралтай бүтээгдэхүүн олдсонгүй"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -91,21 +101,14 @@ msgstr "Захиалгын хөнгөлөлт"
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -116,11 +119,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Хямдралын бүтээгдэхүүн буруу тохируулагдсан байна. Энэ нь \"Борлуулах "
|
||||
"боломжтой\", \"Борлуулах цэг дээр боломжтой\" гэсэн тэмдэглэгээтэй байгаа "
|
||||
|
|
@ -130,3 +132,12 @@ msgstr ""
|
|||
#: 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "ПОС сэшн"
|
||||
|
|
|
|||
|
|
@ -1,128 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
# Imran Pathan, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Imran Pathan, 2024\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\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 "Tetapan Konfigurasi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Diskaun"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Discount %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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 "Peratusan Diskaun"
|
||||
|
||||
#. 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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 "Konfigurasi Tempat Jualan"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
|
@ -1,27 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\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."
|
||||
"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
|
||||
|
|
@ -36,8 +36,8 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -48,10 +48,9 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 ""
|
||||
|
||||
|
|
@ -62,17 +61,29 @@ msgid "Discount Product"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -85,21 +96,14 @@ msgstr ""
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -110,14 +114,19 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
@ -1,32 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+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"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/nb_NO/>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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
|
||||
|
|
@ -41,8 +42,8 @@ msgstr "Innstillinger"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
|
|
@ -53,10 +54,9 @@ msgstr "Rabatt %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -67,19 +67,31 @@ msgid "Discount Product"
|
|||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukter funnet"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukter funnet"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -90,22 +102,15 @@ msgstr "Ordrerabatter"
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -115,11 +120,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
|
|
@ -128,3 +132,12 @@ msgstr ""
|
|||
#: 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Kasseøkt"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Bren Driesen <brdri@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-25 09:47+0000\n"
|
||||
"Last-Translator: Bren Driesen <brdri@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/nl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
|
|
@ -39,12 +42,12 @@ 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"
|
||||
msgstr "Configuratie-instellingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Korting"
|
||||
|
||||
|
|
@ -55,10 +58,9 @@ msgstr "Korting %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -69,18 +71,30 @@ msgid "Discount Product"
|
|||
msgstr "Kortingsproduct"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Geen kortingsproduct gevonden"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Geen btw"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Fout"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Geen kortingsproduct gevonden"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -92,22 +106,15 @@ msgstr "Orderkortingen"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa-instellingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasessie"
|
||||
|
||||
#. 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Btw: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -117,11 +124,10 @@ msgstr "Het standaard kortingspercentage als je op de kortingsknop klikt"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
|
|
@ -130,3 +136,18 @@ msgstr ""
|
|||
#: 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Je kan een kortingsregel niet bewerken."
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Geen btw"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Kassasessie"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Btw: %s"
|
||||
|
|
|
|||
|
|
@ -1,136 +1,160 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:45+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/pl/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.14.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."
|
||||
"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ć."
|
||||
"Aby skorzystać z funkcji Globalnego rabatu, potrzebny jest produkt objęty "
|
||||
"rabatem. Aby go ustawić, przejdź do Punktu Sprzedaży > Konfiguracja > "
|
||||
"Ustawienia."
|
||||
|
||||
#. 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."
|
||||
msgstr "Pozwól kasjerowi udzielać rabatów na całe zamówienie."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
msgstr "Konfiguracja ustawień"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Upust"
|
||||
msgstr "Zniżka"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Upust %"
|
||||
msgstr "Zniżka %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
msgstr "Procent zniżki"
|
||||
|
||||
#. 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"
|
||||
msgstr "Zniżka na produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Błąd"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nie znaleziono produktu z upustem."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Bez podatku."
|
||||
msgstr "Nie znaleziono produktu ze zniżką"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Upusty dla zamówienia"
|
||||
msgstr "Zniżki na 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,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesja 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"
|
||||
msgstr "Pos produkt ze zniżką"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Podatek: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. 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."
|
||||
"Domyślna wartość procentowa zniżki gdy zostanie kliknięty przycisk Zniżka."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
"Produkt objęty rabatem wydaje się być nieprawidłowo skonfigurowany. Upewnij "
|
||||
"się, że jest on oznaczony jako „Można sprzedać” 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."
|
||||
msgstr "Produkt użyty do zastosowania zniżki na zgłoszeniu."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Nie można edytować wiersza zniżki."
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Bez podatku."
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sesja punktu sprzedaży"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Podatek: %s"
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -18,7 +18,6 @@ msgstr ""
|
|||
#. 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."
|
||||
|
|
@ -36,8 +35,8 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -48,10 +47,9 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 ""
|
||||
|
||||
|
|
@ -62,17 +60,29 @@ msgid "Discount Product"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -85,21 +95,14 @@ msgstr ""
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -110,8 +113,7 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
|
|
@ -121,3 +123,9 @@ msgstr ""
|
|||
#: 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,34 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Maitê Dietze, 2025
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2025\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/pt/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
|
|
@ -45,8 +46,8 @@ msgstr "Configurações"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Desconto"
|
||||
|
||||
|
|
@ -57,10 +58,9 @@ msgstr "Desconto %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -71,19 +71,31 @@ msgid "Discount Product"
|
|||
msgstr "Desconto em Produto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenhum produto de desconto encontrado"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenhum produto de desconto encontrado"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -94,21 +106,14 @@ msgstr "Descontos da Encomenda"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de Venda"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessã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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -119,11 +124,10 @@ msgstr "O percentual de desconto padrão ao clicar no botão Desconto"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'."
|
||||
|
|
@ -132,3 +136,12 @@ msgstr ""
|
|||
#: 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sessão do Ponto de Venda"
|
||||
|
|
|
|||
|
|
@ -1,33 +1,35 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Adriano Prado <adrianojprado@gmail.com>, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Maitê Dietze (madi)" <madi@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-23 15:02+0000\n"
|
||||
"Last-Translator: \"Maitê Dietze (madi)\" <madi@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/pos_discount/pt_BR/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
|
||||
"1000000 == 0) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
|
|
@ -44,44 +46,55 @@ msgstr "Configurações"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
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 %"
|
||||
msgstr "% de desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
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 "Desconto no Produto"
|
||||
msgstr "Produto de desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenhum desconto de produto encontrado"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Sem imposto"
|
||||
msgstr "Nenhum produto de desconto encontrado"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -91,24 +104,17 @@ 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 Vendas"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessão do Ponto de Vendas"
|
||||
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 "Desconto Produto Pdv"
|
||||
msgstr "Produto de desconto do PDV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Imposto: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -118,16 +124,24 @@ msgstr "O percentual de desconto padrão ao clicar no botão Desconto"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"O produto com desconto parece mal configurado. Certifique-se de que está "
|
||||
"sinalizado como 'Pode ser vendido' e 'Disponível no Ponto de Venda'."
|
||||
"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 recibo."
|
||||
msgstr "O produto utilizado para aplicar o desconto no ticket."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Não é possível editar uma linha de desconto."
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sessão do Ponto de Vendas"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022, 2025.
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Betty Keresztesi, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Betty Keresztesi, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-24 12:08+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point "
|
||||
"of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Este necesar un produs Discount pentru a utiliza funcția Reducere globală. "
|
||||
"Mergeți la Punctul de vânzare > Configurare > Setări pentru a-l seta."
|
||||
|
|
@ -45,8 +45,8 @@ msgstr "Setări de configurare"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Reducere"
|
||||
|
||||
|
|
@ -57,10 +57,9 @@ msgstr "Reducere %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -71,18 +70,30 @@ msgid "Discount Product"
|
|||
msgstr "Reducere produs"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nu s-a găsit niciun produs Discount"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Fără taxe"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -94,42 +105,40 @@ msgstr "Reduceri comandă"
|
|||
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 "Produs Discount POS"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Taxă: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
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 ""
|
||||
"Procentul implicit de reducere atunci când faceți clic pe butonul Reducere"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Produsul cu discount nu este configurat corespunzător. Asigurați-vă că este "
|
||||
"marcat ca \"Poate fi vândut\" și \"Disponibil în punctul de vânzare\"."
|
||||
|
||||
#. 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 "Produsul utilizat pentru aplicarea reducerii pe bon."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Sesiune Punct de vânzare"
|
||||
|
|
|
|||
|
|
@ -1,36 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# "Anastasiia Koroleva (koan)" <koan@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-27 05:45+0000\n"
|
||||
"Last-Translator: \"Anastasiia Koroleva (koan)\" <koan@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/ru/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point "
|
||||
"of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Для использования функции глобальной скидки необходим продукт со скидкой. "
|
||||
"Перейдите в пункт продажи > Конфигурация > Настройки, чтобы настроить его."
|
||||
|
|
@ -38,31 +35,30 @@ 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 "Разрешить кассиру сделать скидку на весь заказ."
|
||||
msgstr "Разрешить кассиру, дать скидки на весь заказ."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
msgstr "Параметры конфигурации"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Скидка"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "% cкидки"
|
||||
msgstr "Скидка %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "Скидка в процентах"
|
||||
|
||||
|
|
@ -70,48 +66,53 @@ msgstr "Скидка в процентах"
|
|||
#: 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 "Скидка продукта"
|
||||
msgstr "Товар по скидке"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Продукт со скидкой не найден"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Никаких налогов"
|
||||
msgstr "Скидочный продукт не найден"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Скидки заказа"
|
||||
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 "Продукт со скидкой Pos"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Налог: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -121,16 +122,27 @@ msgstr "Процент скидки по умолчанию при нажати
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 "Продукт, используемый для применения скидки к билету."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Никаких налогов"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Налог: %s"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,32 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\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."
|
||||
"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
|
||||
|
|
@ -41,8 +41,8 @@ msgstr "Nastavenia konfigurácie"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Zľava"
|
||||
|
||||
|
|
@ -53,10 +53,9 @@ msgstr "Zľava %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -67,19 +66,31 @@ msgid "Discount Product"
|
|||
msgstr "Zľavniť produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenašli sa žiadne zľavnené produkty"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenašli sa žiadne zľavnené produkty"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -90,21 +101,14 @@ msgstr "Zľavy objednávky"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurácia miesta predaja"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Relá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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -115,11 +119,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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“."
|
||||
|
|
@ -128,3 +131,12 @@ msgstr ""
|
|||
#: 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Relácia miesta predaja"
|
||||
|
|
|
|||
|
|
@ -1,35 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Dejan Sraka <dejan.sraka@picolabs.si>, 2022
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 2022\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:35+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/sl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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
|
||||
|
|
@ -44,10 +46,10 @@ msgstr "Uredi nastavitve"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
|
|
@ -56,10 +58,9 @@ msgstr "Popust %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -70,19 +71,31 @@ msgid "Discount Product"
|
|||
msgstr "Proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Izdelka s popustom ni mogoče najti"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Izdelka s popustom ni mogoče najti"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
|
|
@ -93,22 +106,15 @@ msgstr ""
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavitve POS-blagajne"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Seja 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -118,11 +124,10 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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«."
|
||||
|
|
@ -131,3 +136,12 @@ msgstr ""
|
|||
#: 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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Seja POS"
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\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."
|
||||
"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
|
||||
|
|
@ -36,8 +36,8 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -48,10 +48,9 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 ""
|
||||
|
||||
|
|
@ -62,17 +61,29 @@ msgid "Discount Product"
|
|||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -85,21 +96,14 @@ msgstr ""
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
|
|
@ -110,14 +114,19 @@ msgstr ""
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,133 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2024
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+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/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
|
||||
#. odoo-javascript
|
||||
#: 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 "Discount Product"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.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/js/DiscountButton.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,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesija prodajnog mesta"
|
||||
|
||||
#. 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/js/DiscountButton.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/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 ""
|
||||
"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."
|
||||
|
|
@ -1,67 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:52+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"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, "
|
||||
"2022\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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"
|
||||
"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
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_iface_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/xml/discount_templates.xml:6
|
||||
#, python-format
|
||||
#: 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/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.pos_config_view_form_inherit_pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_discount_pc
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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
|
||||
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.pos_config_view_form_inherit_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
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_iface_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
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.fields,help:pos_discount.field_pos_config_discount_pc
|
||||
msgid "The default discount percentage"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config_discount_product_id
|
||||
msgid "The product used to model the discount."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
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/app/services/pos_store.js:0
|
||||
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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2022
|
||||
# Simon S, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Hanna Kharraziha <hakha@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-20 17:15+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/sv/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.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."
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point "
|
||||
"of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"En rabattprodukt krävs för att använda funktionen Global Rabatt. Gå till "
|
||||
"Försäljningsställe > Konfiguration > Inställningar för att ställa in det."
|
||||
|
|
@ -47,8 +48,8 @@ msgstr "Inställningar"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
|
|
@ -59,10 +60,9 @@ msgstr "Rabatt %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -73,18 +73,30 @@ msgid "Discount Product"
|
|||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukt hittad"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr ""
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Fel"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukt hittad"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -96,22 +108,15 @@ msgstr "Order Rabatter"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassakonfigurering"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasession"
|
||||
|
||||
#. 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 rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr ""
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -121,16 +126,24 @@ msgstr "Standardrabattprocenten när du klickar på knappen Rabatt"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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\"."
|
||||
"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 "Produkten som användes för att tillämpa rabatten på biljetten."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Kassasession"
|
||||
|
|
|
|||
|
|
@ -1,123 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\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/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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\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/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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: 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 ""
|
||||
|
|
@ -1,41 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:36+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/th/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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 "อนุญาตให้แคชเชียร์มอบส่วนลดสำหรับคำสั่งทั้งหมด"
|
||||
msgstr "อนุญาตให้แคชเชียร์มอบส่วนลดสำหรับคำสั่งซื้อทั้งหมด"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
|
|
@ -44,8 +45,8 @@ msgstr "ตั้งค่าการกำหนดค่า"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "ส่วนลด"
|
||||
|
||||
|
|
@ -56,10 +57,9 @@ msgstr "ส่วนลด %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "เปอร์เซ็นต์ส่วนลด"
|
||||
|
||||
|
|
@ -69,46 +69,51 @@ msgstr "เปอร์เซ็นต์ส่วนลด"
|
|||
msgid "Discount Product"
|
||||
msgstr "สินค้าลดราคา"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "ไม่พบสินค้าลดราคา"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: 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 "คำสั่งลดราคา"
|
||||
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 "POS ส่วนลดสินค้า"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "ภาษี: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "สินค้า"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -118,17 +123,24 @@ msgstr "เปอร์เซ็นต์ส่วนลดเริ่มต้
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 "สินค้าที่ใช้ในการรับส่วนลดบนทิกเก็ต"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "เซสชั่นการขายหน้าร้าน"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
|
|
@ -12,31 +12,36 @@
|
|||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Yedigen, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Halil, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-21 14:45+0000\n"
|
||||
"Last-Translator: Odoo Turkish Import <dyki+tr@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/tr/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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."
|
||||
"Genel İndirim özelliğini kullanabilmek için bir indirim ürünü "
|
||||
"tanımlanmalıdır. Bunun için Satış Noktası > Yapılandırma > Ayarlar menüsüne "
|
||||
"gidin ve ilgili ürünü belirleyin."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -50,8 +55,8 @@ msgstr "Yapılandırma Ayarları"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "İndirim"
|
||||
|
||||
|
|
@ -62,10 +67,9 @@ msgstr "İndirim %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -76,18 +80,30 @@ msgid "Discount Product"
|
|||
msgstr "İndirimli Ürün"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "İndirimli ürün bulunamadı"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Vergi yok"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Hata"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "İndirimli ürün bulunamadı"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -99,22 +115,15 @@ msgstr "Sipariş İndirimleri"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Noktası Yapılandırması"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Noktası Oturumu"
|
||||
|
||||
#. 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Vergi: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -124,17 +133,30 @@ msgstr "İndirim düğmesine tıklandığında varsayılan indirim yüzdesi"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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."
|
||||
"İndirim ürünü yanlış yapılandırılmış görünüyor. '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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Bir indirim satırını düzenleyemezsiniz."
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Vergi yok"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Satış Noktası Oturumu"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Vergi: %s"
|
||||
|
|
|
|||
|
|
@ -1,32 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"Language: 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"
|
||||
"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."
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point "
|
||||
"of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Щоб скористатися функцією глобальної знижки, потрібен товар зі знижкою. "
|
||||
"Перейдіть до точки продажу > Конфігурація > Параметри, щоб налаштувати це."
|
||||
|
|
@ -43,8 +45,8 @@ msgstr "Налаштування"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Знижка"
|
||||
|
||||
|
|
@ -55,10 +57,9 @@ msgstr "Знижка %"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "Відсоток знижки"
|
||||
|
||||
|
|
@ -69,18 +70,30 @@ msgid "Discount Product"
|
|||
msgstr "Товар знижки"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Не знайдено товару зі знижкою"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Немає податків"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "Не знайдено товару зі знижкою"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -92,22 +105,15 @@ msgstr "Знижки на замовлення"
|
|||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Податок: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -117,11 +123,10 @@ msgstr "Типовий відсоток знижки при натисканні
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Дисконтний товар здається неправильним. Переконайтеся, що його позначено як "
|
||||
"\"Можна продати\" та \"Доступно в точці продажу\"."
|
||||
|
|
@ -130,3 +135,18 @@ msgstr ""
|
|||
#: 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 "Товар, який використовується для застосування знижки на квиток."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Немає податків"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Сесія точки продажу"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Податок: %s"
|
||||
|
|
|
|||
164
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/uz.po
Normal file
164
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/uz.po
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point "
|
||||
"of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Global chegirma xususiyatidan foydalanish uchun chegirmali mahsulot kerak. "
|
||||
"Uni sozlash uchun Sotuv nuqtasi > Sozlamalar > Konfiguratsiya bo‘limiga "
|
||||
"o‘ting."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
#, fuzzy
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Kassirga butun buyurtma bo‘yicha chegirma berishga ruxsat bering."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfiguratsiya sozlamalari"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
#, fuzzy
|
||||
msgid "Discount"
|
||||
msgstr "Chegirma"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
#, fuzzy
|
||||
msgid "Discount %"
|
||||
msgstr "Chegirma %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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
|
||||
#, fuzzy
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Chegirma foizi"
|
||||
|
||||
#. 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
|
||||
#, fuzzy
|
||||
msgid "Discount Product"
|
||||
msgstr "Chegirmali mahsulot"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
#, fuzzy
|
||||
msgid "Error"
|
||||
msgstr "Xatolik"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
#, fuzzy
|
||||
msgid "No discount product found"
|
||||
msgstr "Chegirmali mahsulot topilmadi"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
#, fuzzy
|
||||
msgid "Order Discounts"
|
||||
msgstr "Buyurtma chegirmalari"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
#, fuzzy
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Sotuv nuqtasi konfiguratsiyasi"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
#, fuzzy
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Sotuv nuqtasi chegirmali mahsuloti"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
#, fuzzy
|
||||
msgid "Product"
|
||||
msgstr "Mahsulot"
|
||||
|
||||
#. 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
|
||||
#, fuzzy
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Chegirma tugmasini bosganingizda standart chegirma foizi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be "
|
||||
"Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Chegirmali mahsulot noto‘g‘ri sozlanganga o‘xshaydi. Uning \"Sotish mumkin\" "
|
||||
"va \"Sotuv nuqtasida mavjud\" deb belgilanganini tekshiring."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
#, fuzzy
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Chiptaga chegirma qo‘llash uchun ishlatiladigan mahsulot."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
#, fuzzy
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr "Chegirma qatorini tahrirlay olmaysiz."
|
||||
|
|
@ -1,35 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Thi Huong Nguyen (thng)" <thng@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-16 06:07+0000\n"
|
||||
"Last-Translator: \"Thi Huong Nguyen (thng)\" <thng@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"pos_discount/vi/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
"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 lẻ > Cấu hình > Cài đặt để thiết lập."
|
||||
"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 "
|
||||
"POS > 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
|
||||
|
|
@ -43,8 +46,8 @@ msgstr "Cài đặt cấu hình"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "Chiết khấu"
|
||||
|
||||
|
|
@ -55,10 +58,9 @@ msgstr "% chiết khấu"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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"
|
||||
|
||||
|
|
@ -69,18 +71,30 @@ msgid "Discount Product"
|
|||
msgstr "Sản phẩm chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.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"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Không có thuế"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr "Lỗi"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -90,12 +104,7 @@ 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 lẻ"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Phiên POS"
|
||||
msgstr "Cấu hình POS"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
|
|
@ -103,11 +112,9 @@ 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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Thuế: %s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Sản phẩm"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -117,16 +124,30 @@ msgstr "Phần trăm chiết khấu mặc định khi bấm vào nút Chiết kh
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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'. "
|
||||
"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."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "Không có thuế"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "Phiên POS"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "Thuế: %s"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Raymond Yu <cl_yu@hotmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/pos_discount/zh_Hans/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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."
|
||||
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 "允许出纳在整张订单给出折扣"
|
||||
msgstr "允许收银员在整张订单给出折扣."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
|
|
@ -41,8 +43,8 @@ msgstr "配置设置"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "折扣"
|
||||
|
||||
|
|
@ -53,10 +55,9 @@ msgstr "折扣%"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "折扣百分比"
|
||||
|
||||
|
|
@ -67,18 +68,30 @@ msgid "Discount Product"
|
|||
msgstr "折扣产品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "没有找到折扣商品"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "无税"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "没有找到折扣商品"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -90,22 +103,15 @@ msgstr "订单折扣"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS配置"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "税率:%s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -115,14 +121,28 @@ msgstr "点击折扣按钮时的默认折扣百分比"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 "用来在票面上应用折扣的产品。"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "No tax"
|
||||
#~ msgstr "无税"
|
||||
|
||||
#~ msgid "Point of Sale Session"
|
||||
#~ msgstr "POS会话"
|
||||
|
||||
#~ msgid "Tax: %s"
|
||||
#~ msgstr "税率:%s"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-05-06 12:04+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/"
|
||||
"zh_TW/)\n"
|
||||
"Language: 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 "要使用全局折扣功能,需要有一個折扣產品。進入銷售點 > 配置 > 設置來設置它。"
|
||||
"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
|
||||
|
|
@ -42,8 +41,8 @@ msgstr "配置設定"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.xml:0
|
||||
#: model:product.template,name:pos_discount.product_product_consumable_product_template
|
||||
msgid "Discount"
|
||||
msgstr "折扣"
|
||||
|
||||
|
|
@ -54,10 +53,9 @@ msgstr "折扣百分比"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: code:addons/pos_discount/static/src/app/screens/product_screen/control_buttons/control_buttons.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 "折扣百分比"
|
||||
|
||||
|
|
@ -68,18 +66,30 @@ msgid "Discount Product"
|
|||
msgstr "折扣產品"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "未找到折扣產品"
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "無稅"
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid "No discount product found"
|
||||
msgstr "未找到折扣產品"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
|
|
@ -91,22 +101,15 @@ msgstr "訂單折扣"
|
|||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
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/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "稅:%s"
|
||||
#: model:ir.model,name:pos_discount.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "商品"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
|
|
@ -116,14 +119,19 @@ msgstr "點擊折扣按鈕時的預設折扣百分比"
|
|||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
#: code:addons/pos_discount/static/src/app/services/pos_store.js:0
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
"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 "在票據上應用折扣的產品。"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/app/screens/ticket_screen/ticket_screen.js:0
|
||||
msgid "You cannot edit a discount line."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import pos_config
|
||||
from . import pos_session
|
||||
from . import res_config_settings
|
||||
from . import product_template
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ class PosConfig(models.Model):
|
|||
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.')
|
||||
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):
|
||||
|
|
@ -22,7 +22,7 @@ class PosConfig(models.Model):
|
|||
.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)
|
||||
product = self.env.ref("pos_discount.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
|
||||
|
||||
|
|
@ -31,3 +31,8 @@ class PosConfig(models.Model):
|
|||
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()
|
||||
default_discount_product = self.env.ref('pos_discount.product_product_consumable', raise_if_not_found=False) or self.env['product.product']
|
||||
return res | self.env['pos.config'].search([]).mapped('discount_product_id') | default_discount_product
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
from odoo.osv.expression import OR
|
||||
|
||||
|
||||
class PosSession(models.Model):
|
||||
_inherit = 'pos.session'
|
||||
|
||||
def _get_pos_ui_product_product(self, params):
|
||||
result = super()._get_pos_ui_product_product(params)
|
||||
discount_product_id = self.config_id.discount_product_id.id
|
||||
product_ids_set = {product['id'] for product in result}
|
||||
|
||||
if self.config_id.module_pos_discount and discount_product_id not in product_ids_set:
|
||||
productModel = self.env['product.product'].with_context(**params['context'])
|
||||
product = productModel.search_read([('id', '=', discount_product_id)], fields=params['search_params']['fields'])
|
||||
self._process_pos_ui_product_product(product)
|
||||
result.extend(product)
|
||||
return result
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
from odoo import models, api
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = 'product.template'
|
||||
|
||||
@api.model
|
||||
def _load_pos_data_read(self, records, config):
|
||||
read_data = super()._load_pos_data_read(records, config)
|
||||
discount_product_id = config.discount_product_id.id
|
||||
product_ids_set = {product['id'] for product in read_data}
|
||||
|
||||
if config.module_pos_discount and discount_product_id not in product_ids_set:
|
||||
productModel = self.env['product.template'].with_context({**self.env.context, 'display_default_code': False})
|
||||
fields = self.env['product.template']._load_pos_data_fields(config)
|
||||
product = productModel.search_read([('id', '=', discount_product_id)], fields=fields, load=False)
|
||||
read_data.extend(product)
|
||||
|
||||
return read_data
|
||||
|
|
@ -13,7 +13,7 @@ class ResConfigSettings(models.TransientModel):
|
|||
|
||||
@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']
|
||||
default_product = self.env.ref("pos_discount.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):
|
||||
|
|
|
|||
|
|
@ -0,0 +1,26 @@
|
|||
import { PosOrderline } from "@point_of_sale/app/models/pos_order_line";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
|
||||
patch(PosOrderline.prototype, {
|
||||
/**
|
||||
* Checks if the current line applies for a global discount from `pos_discount.DiscountButton`.
|
||||
* @returns Boolean
|
||||
*/
|
||||
isGlobalDiscountApplicable() {
|
||||
return !(
|
||||
// Ignore existing discount line as not removing it before adding new discount line successfully
|
||||
(
|
||||
(this.config.tip_product_id &&
|
||||
this.product_id.id === this.config.tip_product_id?.id) ||
|
||||
(this.config.discount_product_id &&
|
||||
this.product_id.id === this.config.discount_product_id?.id)
|
||||
)
|
||||
);
|
||||
},
|
||||
get isDiscountLine() {
|
||||
return (
|
||||
this.config.module_pos_discount &&
|
||||
this.product_id.id === this.config.discount_product_id?.id
|
||||
);
|
||||
},
|
||||
});
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
import { _t } from "@web/core/l10n/translation";
|
||||
import { NumberPopup } from "@point_of_sale/app/components/popups/number_popup/number_popup";
|
||||
import { ControlButtons } from "@point_of_sale/app/screens/product_screen/control_buttons/control_buttons";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
|
||||
patch(ControlButtons.prototype, {
|
||||
async clickDiscount() {
|
||||
this.dialog.add(NumberPopup, {
|
||||
title: _t("Discount Percentage"),
|
||||
startingValue: this.pos.config.discount_pc,
|
||||
getPayload: (num) => {
|
||||
const percent = Math.max(
|
||||
0,
|
||||
Math.min(100, this.env.utils.parseValidFloat(num.toString()))
|
||||
);
|
||||
this.applyDiscount(percent);
|
||||
},
|
||||
});
|
||||
},
|
||||
// FIXME business method in a compoenent, maybe to move in pos_store
|
||||
async applyDiscount(percent) {
|
||||
return this.pos.applyDiscount(percent);
|
||||
},
|
||||
});
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
<t t-name="pos_discount.ControlButtons" t-inherit="point_of_sale.ControlButtons" t-inherit-mode="extension">
|
||||
<xpath
|
||||
expr="//t[@t-if='props.showRemainingButtons']/div/button[hasclass('o_pricelist_button')]"
|
||||
position="before">
|
||||
<button t-if="pos.config.module_pos_discount and pos.config.discount_product_id and pos.cashier._role !== 'minimal'"
|
||||
class="js_discount"
|
||||
t-att-class="buttonClass"
|
||||
t-on-click="() => this.clickDiscount()">
|
||||
<i class="fa fa-tag me-1"/>Discount
|
||||
</button>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
import { ProductScreen } from "@point_of_sale/app/screens/product_screen/product_screen";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
|
||||
patch(ProductScreen.prototype, {
|
||||
getNumpadButtons() {
|
||||
const buttons = super.getNumpadButtons();
|
||||
if (!this.currentOrder?.getSelectedOrderline()?.isDiscountLine) {
|
||||
return buttons;
|
||||
}
|
||||
const toDisable = new Set(["quantity", "discount"]);
|
||||
return buttons.map((button) => {
|
||||
if (toDisable.has(button.value)) {
|
||||
return { ...button, disabled: true };
|
||||
}
|
||||
return button;
|
||||
});
|
||||
},
|
||||
});
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
import { patch } from "@web/core/utils/patch";
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { AlertDialog } from "@web/core/confirmation_dialog/confirmation_dialog";
|
||||
import { TicketScreen } from "@point_of_sale/app/screens/ticket_screen/ticket_screen";
|
||||
|
||||
patch(TicketScreen.prototype, {
|
||||
async onDoRefund() {
|
||||
await super.onDoRefund(...arguments);
|
||||
const order = this.getSelectedOrder();
|
||||
const discountLines = order.discountLines;
|
||||
const destinationOrder = this.pos.getOrder();
|
||||
|
||||
if (discountLines?.length && destinationOrder) {
|
||||
const percentage = order.globalDiscountPc;
|
||||
this.pos.applyDiscount(percentage, destinationOrder);
|
||||
}
|
||||
},
|
||||
|
||||
_onUpdateSelectedOrderline() {
|
||||
const selectedOrderlineId = this.getSelectedOrderlineId();
|
||||
const orderline = this.getSelectedOrder().lines.find(
|
||||
(line) => line.id == selectedOrderlineId
|
||||
);
|
||||
if (orderline && orderline.product_id.id === this.pos.config.discount_product_id?.id) {
|
||||
return this.dialog.add(AlertDialog, {
|
||||
title: _t("Error"),
|
||||
body: _t("You cannot edit a discount line."),
|
||||
});
|
||||
}
|
||||
return super._onUpdateSelectedOrderline(...arguments);
|
||||
},
|
||||
});
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
import { patch } from "@web/core/utils/patch";
|
||||
import { PosStore } from "@point_of_sale/app/services/pos_store";
|
||||
import { AlertDialog } from "@web/core/confirmation_dialog/confirmation_dialog";
|
||||
import { accountTaxHelpers } from "@account/helpers/account_tax";
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { debounce } from "@web/core/utils/timing";
|
||||
import { PosOrderAccounting } from "@point_of_sale/app/models/accounting/pos_order_accounting";
|
||||
|
||||
patch(PosStore.prototype, {
|
||||
async setup() {
|
||||
await super.setup(...arguments);
|
||||
this.debouncedDiscount = debounce(this.applyDiscount.bind(this));
|
||||
|
||||
const updateOrderDiscount = (order) => {
|
||||
if (!order || order.state !== "draft") {
|
||||
return;
|
||||
}
|
||||
if (!order.globalDiscountPc) {
|
||||
return;
|
||||
}
|
||||
|
||||
const percentage = order.globalDiscountPc;
|
||||
this.debouncedDiscount(percentage, order); // Wait an animation frame before applying the discount
|
||||
};
|
||||
|
||||
this.models["pos.order.line"].addEventListener("update", (data) => {
|
||||
const line = this.models["pos.order.line"].get(data.id);
|
||||
const order = line.order_id;
|
||||
|
||||
if (!line.isDiscountLine) {
|
||||
updateOrderDiscount(order);
|
||||
}
|
||||
});
|
||||
|
||||
this.models["pos.order"].addEventListener("update", ({ id, fields }) => {
|
||||
const areAccountingFields = fields?.some((field) =>
|
||||
PosOrderAccounting.accountingFields.has(field)
|
||||
);
|
||||
|
||||
if (areAccountingFields) {
|
||||
updateOrderDiscount(this.models["pos.order"].get(id));
|
||||
}
|
||||
});
|
||||
},
|
||||
selectOrderLine(order, line) {
|
||||
super.selectOrderLine(order, line);
|
||||
// Ensure the numpadMode should be `price` when the discount line is selected
|
||||
if (line?.isDiscountLine) {
|
||||
this.numpadMode = "price";
|
||||
}
|
||||
},
|
||||
async applyDiscount(percent, order = this.getOrder()) {
|
||||
const taxKey = (taxIds) =>
|
||||
taxIds
|
||||
.map((tax) => tax.id)
|
||||
.sort((a, b) => a - b)
|
||||
.join("_");
|
||||
|
||||
const product = this.config.discount_product_id;
|
||||
if (product === undefined) {
|
||||
this.dialog.add(AlertDialog, {
|
||||
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;
|
||||
}
|
||||
|
||||
const discountLinesMap = {};
|
||||
(order.discountLines || []).forEach((line) => {
|
||||
const key = taxKey(line.tax_ids);
|
||||
discountLinesMap[key] = line;
|
||||
});
|
||||
const isGlobalDiscountBtnClicked = Object.keys(discountLinesMap).length === 0;
|
||||
|
||||
const lines = order.getOrderlines();
|
||||
const discountableLines = lines.filter((line) => line.isGlobalDiscountApplicable());
|
||||
const baseLines = discountableLines.map((line) =>
|
||||
accountTaxHelpers.prepare_base_line_for_taxes_computation(
|
||||
line,
|
||||
line.prepareBaseLineForTaxesComputationExtraValues()
|
||||
)
|
||||
);
|
||||
accountTaxHelpers.add_tax_details_in_base_lines(baseLines, order.company_id);
|
||||
accountTaxHelpers.round_base_lines_tax_details(baseLines, order.company_id);
|
||||
|
||||
const groupingFunction = (base_line) => ({
|
||||
grouping_key: { product_id: product },
|
||||
raw_grouping_key: { product_id: product.id },
|
||||
});
|
||||
|
||||
const globalDiscountBaseLines = accountTaxHelpers.prepare_global_discount_lines(
|
||||
baseLines,
|
||||
order.company_id,
|
||||
"percent",
|
||||
percent,
|
||||
{
|
||||
computation_key: "global_discount",
|
||||
grouping_function: groupingFunction,
|
||||
}
|
||||
);
|
||||
let lastDiscountLine = null;
|
||||
for (const baseLine of globalDiscountBaseLines) {
|
||||
const extra_tax_data = accountTaxHelpers.export_base_line_extra_tax_data(baseLine);
|
||||
extra_tax_data.discount_percentage = percent;
|
||||
|
||||
const key = taxKey(baseLine.tax_ids);
|
||||
const existingLine = discountLinesMap[key];
|
||||
|
||||
if (existingLine) {
|
||||
existingLine.extra_tax_data = extra_tax_data;
|
||||
existingLine.price_unit = baseLine.price_unit;
|
||||
delete discountLinesMap[key];
|
||||
} else {
|
||||
lastDiscountLine = await this.addLineToOrder(
|
||||
{
|
||||
product_id: baseLine.product_id,
|
||||
price_unit: baseLine.price_unit,
|
||||
qty: baseLine.quantity,
|
||||
tax_ids: [["link", ...baseLine.tax_ids]],
|
||||
product_tmpl_id: baseLine.product_id.product_tmpl_id,
|
||||
extra_tax_data: extra_tax_data,
|
||||
},
|
||||
order,
|
||||
{ force: true },
|
||||
false
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Object.values(discountLinesMap).forEach((line) => {
|
||||
line.delete();
|
||||
});
|
||||
|
||||
if (lastDiscountLine && isGlobalDiscountBtnClicked) {
|
||||
order.selectOrderline(lastDiscountLine);
|
||||
this.numpadMode = "price";
|
||||
}
|
||||
},
|
||||
});
|
||||
|
|
@ -1,91 +0,0 @@
|
|||
odoo.define('pos_discount.DiscountButton', function(require) {
|
||||
'use strict';
|
||||
|
||||
const PosComponent = require('point_of_sale.PosComponent');
|
||||
const ProductScreen = require('point_of_sale.ProductScreen');
|
||||
const { useListener } = require("@web/core/utils/hooks");
|
||||
const Registries = require('point_of_sale.Registries');
|
||||
|
||||
class DiscountButton extends PosComponent {
|
||||
setup() {
|
||||
super.setup();
|
||||
useListener('click', this.onClick);
|
||||
}
|
||||
async onClick() {
|
||||
var self = this;
|
||||
const { confirmed, payload } = await this.showPopup('NumberPopup',{
|
||||
title: this.env._t('Discount Percentage'),
|
||||
startingValue: this.env.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) {
|
||||
var order = this.env.pos.get_order();
|
||||
var lines = order.get_orderlines();
|
||||
var product = this.env.pos.db.get_product_by_id(this.env.pos.config.discount_product_id[0]);
|
||||
if (product === undefined) {
|
||||
await this.showPopup('ErrorPopup', {
|
||||
title : this.env._t("No discount product found"),
|
||||
body : this.env._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.remove_orderline(line));
|
||||
|
||||
// Add one discount line per tax group
|
||||
let linesByTax = order.get_orderlines_grouped_by_tax_ids();
|
||||
for (let [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.
|
||||
let tax_ids_array = tax_ids.split(',').filter(id => id !== '').map(id => Number(id));
|
||||
|
||||
let 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.
|
||||
let 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 ?
|
||||
_.str.sprintf(
|
||||
this.env._t('Tax: %s'),
|
||||
tax_ids_array.map(taxId => this.env.pos.taxes_by_id[taxId].amount + '%').join(', ')
|
||||
) :
|
||||
this.env._t('No tax')),
|
||||
extras: {
|
||||
price_automatically_set: true,
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
DiscountButton.template = 'DiscountButton';
|
||||
|
||||
ProductScreen.addControlButton({
|
||||
component: DiscountButton,
|
||||
condition: function() {
|
||||
return this.env.pos.config.module_pos_discount && this.env.pos.config.discount_product_id;
|
||||
},
|
||||
});
|
||||
|
||||
Registries.Component.add(DiscountButton);
|
||||
|
||||
return DiscountButton;
|
||||
});
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
odoo.define('pos_discount.models', function (require) {
|
||||
"use strict";
|
||||
|
||||
const { Orderline } = require('point_of_sale.models');
|
||||
const Registries = require('point_of_sale.Registries');
|
||||
|
||||
const PosDiscountOrderline = (Orderline) => class PosDiscountOrderline extends Orderline {
|
||||
/**
|
||||
* 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]);
|
||||
}
|
||||
}
|
||||
Registries.Model.extend(Orderline, PosDiscountOrderline);
|
||||
|
||||
});
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
|
||||
<t t-name="DiscountButton" owl="1">
|
||||
<span class="control-button js_discount">
|
||||
<i class="fa fa-tag"></i>
|
||||
<span> </span>
|
||||
<span>Discount</span>
|
||||
</span>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,66 @@
|
|||
import * as ProductScreen from "@point_of_sale/../tests/pos/tours/utils/product_screen_util";
|
||||
import * as ReceiptScreen from "@point_of_sale/../tests/pos/tours/utils/receipt_screen_util";
|
||||
import * as PaymentScreen from "@point_of_sale/../tests/pos/tours/utils/payment_screen_util";
|
||||
import * as TicketScreen from "@point_of_sale/../tests/pos/tours/utils/ticket_screen_util";
|
||||
import * as Order from "@point_of_sale/../tests/generic_helpers/order_widget_util";
|
||||
import * as Chrome from "@point_of_sale/../tests/pos/tours/utils/chrome_util";
|
||||
import * as Dialog from "@point_of_sale/../tests/generic_helpers/dialog_util";
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
registry.category("web_tour.tours").add("test_pos_global_discount_sell_and_refund", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
ProductScreen.addOrderline("Desk Pad", "1", "3"),
|
||||
Chrome.clickOrders(),
|
||||
Order.hasLine({
|
||||
withoutClass: ".selected",
|
||||
run: "click",
|
||||
productName: "Desk Pad",
|
||||
quantity: "1",
|
||||
}),
|
||||
// Check that the draft order's order line is not selected and not causing issues while
|
||||
// comparing the line to the discount line
|
||||
{
|
||||
content: "Manually trigger keyup event",
|
||||
trigger: ".ticket-screen",
|
||||
run: function () {
|
||||
window.dispatchEvent(new KeyboardEvent("keyup", { key: "9" }));
|
||||
},
|
||||
},
|
||||
TicketScreen.loadSelectedOrder(),
|
||||
ProductScreen.clickControlButton("Discount"),
|
||||
{
|
||||
content: `click discount numpad button: 5`,
|
||||
trigger: `.o_dialog div.numpad button:contains(5)`,
|
||||
run: "click",
|
||||
},
|
||||
Dialog.confirm(),
|
||||
ProductScreen.selectedOrderlineHas("discount", 1, "-0.15"),
|
||||
ProductScreen.totalAmountIs("2.85"),
|
||||
ProductScreen.clickPayButton(),
|
||||
PaymentScreen.clickPaymentMethod("Bank"),
|
||||
PaymentScreen.clickValidate(),
|
||||
ReceiptScreen.isShown(),
|
||||
ReceiptScreen.clickNextOrder(),
|
||||
...ProductScreen.clickRefund(),
|
||||
TicketScreen.selectOrder("001"),
|
||||
ProductScreen.clickNumpad("1"),
|
||||
TicketScreen.toRefundTextContains("To Refund: 1"),
|
||||
ProductScreen.clickLine("discount"),
|
||||
ProductScreen.clickNumpad("1"),
|
||||
Dialog.confirm(),
|
||||
TicketScreen.confirmRefund(),
|
||||
PaymentScreen.isShown(),
|
||||
PaymentScreen.clickBack(),
|
||||
ProductScreen.clickLine("discount"),
|
||||
ProductScreen.clickNumpad("1"),
|
||||
Dialog.is({ title: "price update not allowed" }),
|
||||
Dialog.confirm(),
|
||||
ProductScreen.clickPayButton(),
|
||||
PaymentScreen.clickPaymentMethod("Bank"),
|
||||
PaymentScreen.clickValidate(),
|
||||
ReceiptScreen.isShown(),
|
||||
].flat(),
|
||||
});
|
||||
|
|
@ -0,0 +1,353 @@
|
|||
import * as Chrome from "@point_of_sale/../tests/pos/tours/utils/chrome_util";
|
||||
import * as Dialog from "@point_of_sale/../tests/generic_helpers/dialog_util";
|
||||
import * as ProductScreen from "@point_of_sale/../tests/pos/tours/utils/product_screen_util";
|
||||
import * as PaymentScreen from "@point_of_sale/../tests/pos/tours/utils/payment_screen_util";
|
||||
import * as ReceiptScreen from "@point_of_sale/../tests/pos/tours/utils/receipt_screen_util";
|
||||
import * as TicketScreen from "@point_of_sale/../tests/pos/tours/utils/ticket_screen_util";
|
||||
import { escapeRegExp } from "@web/core/utils/strings";
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
export function addDocument(documentParams) {
|
||||
const steps = [];
|
||||
for (const values of documentParams) {
|
||||
steps.push(...ProductScreen.addOrderline(values.product, values.quantity));
|
||||
}
|
||||
steps.push(...[ProductScreen.clickPartnerButton(), ProductScreen.clickCustomer("AAAAAA")]);
|
||||
return steps;
|
||||
}
|
||||
|
||||
export function clickDiscountNumpad(num) {
|
||||
return {
|
||||
content: `click discount numpad button: ${num}`,
|
||||
trigger: `.o_dialog div.numpad button:contains(/^${escapeRegExp(num)}$/)`,
|
||||
run: "click",
|
||||
};
|
||||
}
|
||||
|
||||
export function addDiscount(percentage) {
|
||||
const steps = [ProductScreen.clickControlButton("Discount")];
|
||||
for (const num of percentage.split("")) {
|
||||
steps.push(clickDiscountNumpad(num));
|
||||
}
|
||||
steps.push({
|
||||
trigger: `.popup-input:contains(/^${escapeRegExp(percentage)}$/)`,
|
||||
run: "click",
|
||||
});
|
||||
steps.push(Dialog.confirm());
|
||||
return steps;
|
||||
}
|
||||
|
||||
export function payAndInvoice(totalAmount) {
|
||||
return [
|
||||
ProductScreen.clickPayButton(),
|
||||
|
||||
PaymentScreen.totalIs(totalAmount),
|
||||
PaymentScreen.clickPaymentMethod("Bank"),
|
||||
PaymentScreen.remainingIs("0.0"),
|
||||
|
||||
PaymentScreen.clickInvoiceButton(),
|
||||
PaymentScreen.clickValidate(),
|
||||
|
||||
ReceiptScreen.receiptAmountTotalIs(totalAmount),
|
||||
ReceiptScreen.clickNextOrder(),
|
||||
];
|
||||
}
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_in_pos_global_discount_round_per_line_price_excluded", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_1_1", quantity: "1" },
|
||||
{ product: "product_1_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("35.91"),
|
||||
ProductScreen.checkTaxAmount("4.76"),
|
||||
...payAndInvoice("35.91"),
|
||||
...addDocument([
|
||||
{ product: "product_1_1", quantity: "1" },
|
||||
{ product: "product_1_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("7"),
|
||||
ProductScreen.checkTotalAmount("34.08"),
|
||||
ProductScreen.checkTaxAmount("4.53"),
|
||||
...payAndInvoice("34.08"),
|
||||
...addDocument([
|
||||
{ product: "product_1_1", quantity: "1" },
|
||||
{ product: "product_1_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("18"),
|
||||
ProductScreen.checkTotalAmount("30.04"),
|
||||
ProductScreen.checkTaxAmount("3.99"),
|
||||
...payAndInvoice("30.04"),
|
||||
// On refund, check if the global discount line is correctly prorated in the refund order
|
||||
...ProductScreen.clickRefund(),
|
||||
TicketScreen.filterIs("Paid"),
|
||||
TicketScreen.selectOrder("001"),
|
||||
ProductScreen.clickNumpad("1"),
|
||||
TicketScreen.confirmRefund(),
|
||||
PaymentScreen.totalIs("-17.95"), // -18.32 (product_1_1) + 0.37 (discount)
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_in_pos_global_discount_round_globally_price_excluded", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_2_1", quantity: "1" },
|
||||
{ product: "product_2_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("35.94"),
|
||||
ProductScreen.checkTaxAmount("4.79"),
|
||||
...payAndInvoice("35.94"),
|
||||
...addDocument([
|
||||
{ product: "product_2_1", quantity: "1" },
|
||||
{ product: "product_2_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("7"),
|
||||
ProductScreen.checkTotalAmount("34.10"),
|
||||
ProductScreen.checkTaxAmount("4.56"),
|
||||
...payAndInvoice("34.10"),
|
||||
...addDocument([
|
||||
{ product: "product_2_1", quantity: "1" },
|
||||
{ product: "product_2_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("18"),
|
||||
ProductScreen.checkTotalAmount("30.07"),
|
||||
ProductScreen.checkTaxAmount("4.02"),
|
||||
...payAndInvoice("30.07"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_in_pos_global_discount_round_per_line_price_included", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_3_1", quantity: "1" },
|
||||
{ product: "product_3_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("35.91"),
|
||||
ProductScreen.checkTaxAmount("4.76"),
|
||||
...payAndInvoice("35.91"),
|
||||
...addDocument([
|
||||
{ product: "product_3_1", quantity: "1" },
|
||||
{ product: "product_3_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("7"),
|
||||
ProductScreen.checkTotalAmount("34.08"),
|
||||
ProductScreen.checkTaxAmount("4.53"),
|
||||
...payAndInvoice("34.08"),
|
||||
...addDocument([
|
||||
{ product: "product_3_1", quantity: "1" },
|
||||
{ product: "product_3_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("18"),
|
||||
ProductScreen.checkTotalAmount("30.04"),
|
||||
ProductScreen.checkTaxAmount("3.99"),
|
||||
...payAndInvoice("30.04"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_in_pos_global_discount_round_globally_price_included", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_4_1", quantity: "1" },
|
||||
{ product: "product_4_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("35.93"),
|
||||
ProductScreen.checkTaxAmount("4.79"),
|
||||
...payAndInvoice("35.93"),
|
||||
...addDocument([
|
||||
{ product: "product_4_1", quantity: "1" },
|
||||
{ product: "product_4_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("7"),
|
||||
ProductScreen.checkTotalAmount("34.09"),
|
||||
ProductScreen.checkTaxAmount("4.56"),
|
||||
...payAndInvoice("34.09"),
|
||||
...addDocument([
|
||||
{ product: "product_4_1", quantity: "1" },
|
||||
{ product: "product_4_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("18"),
|
||||
ProductScreen.checkTotalAmount("30.06"),
|
||||
ProductScreen.checkTaxAmount("4.02"),
|
||||
...payAndInvoice("30.06"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_br_pos_global_discount_round_per_line_price_excluded", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_1_1", quantity: "1" },
|
||||
{ product: "product_1_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("94.08"),
|
||||
ProductScreen.checkTaxAmount("30.7"),
|
||||
...payAndInvoice("94.08"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_br_pos_global_discount_round_globally_price_excluded", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_2_1", quantity: "1" },
|
||||
{ product: "product_2_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("94.08"),
|
||||
ProductScreen.checkTaxAmount("30.71"),
|
||||
...payAndInvoice("94.08"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_br_pos_global_discount_round_per_line_price_included", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_3_1", quantity: "1" },
|
||||
{ product: "product_3_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("94.08"),
|
||||
ProductScreen.checkTaxAmount("30.7"),
|
||||
...payAndInvoice("94.08"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_br_pos_global_discount_round_globally_price_included", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_4_1", quantity: "1" },
|
||||
{ product: "product_4_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("94.08"),
|
||||
ProductScreen.checkTaxAmount("30.71"),
|
||||
...payAndInvoice("94.08"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_be_pos_global_discount_round_per_line_price_excluded", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_1_1", quantity: "1" },
|
||||
{ product: "product_1_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("42.25"),
|
||||
ProductScreen.checkTaxAmount("9.34"),
|
||||
...payAndInvoice("42.25"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_be_pos_global_discount_round_globally_price_excluded", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_2_1", quantity: "1" },
|
||||
{ product: "product_2_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("42.24"),
|
||||
ProductScreen.checkTaxAmount("9.33"),
|
||||
...payAndInvoice("42.24"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_be_pos_global_discount_round_per_line_price_included", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_3_1", quantity: "1" },
|
||||
{ product: "product_3_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("42.25"),
|
||||
ProductScreen.checkTaxAmount("9.34"),
|
||||
...payAndInvoice("42.25"),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry
|
||||
.category("web_tour.tours")
|
||||
.add("test_taxes_l10n_be_pos_global_discount_round_globally_price_included", {
|
||||
steps: () =>
|
||||
[
|
||||
Chrome.startPoS(),
|
||||
Dialog.confirm("Open Register"),
|
||||
|
||||
...addDocument([
|
||||
{ product: "product_4_1", quantity: "1" },
|
||||
{ product: "product_4_2", quantity: "1" },
|
||||
]),
|
||||
...addDiscount("2"),
|
||||
ProductScreen.checkTotalAmount("42.25"),
|
||||
ProductScreen.checkTaxAmount("9.33"),
|
||||
...payAndInvoice("42.25"),
|
||||
].flat(),
|
||||
});
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
import { animationFrame, expect, test } from "@odoo/hoot";
|
||||
import { mountWithCleanup } from "@web/../tests/web_test_helpers";
|
||||
import { setupPosEnv, expectFormattedPrice } from "@point_of_sale/../tests/unit/utils";
|
||||
import { ProductScreen } from "@point_of_sale/app/screens/product_screen/product_screen";
|
||||
import { definePosModels } from "@point_of_sale/../tests/unit/data/generate_model_definitions";
|
||||
|
||||
definePosModels();
|
||||
|
||||
test("getNumpadButtons", async () => {
|
||||
const store = await setupPosEnv();
|
||||
const order = store.addNewOrder();
|
||||
const product1 = store.models["product.template"].get(5);
|
||||
await store.addLineToOrder(
|
||||
{
|
||||
product_tmpl_id: product1,
|
||||
qty: 1,
|
||||
},
|
||||
order
|
||||
);
|
||||
const productScreen = await mountWithCleanup(ProductScreen, {
|
||||
props: { orderUuid: order.uuid },
|
||||
});
|
||||
await store.applyDiscount(10);
|
||||
await animationFrame();
|
||||
const receivedButtonsDisableStatue = productScreen
|
||||
.getNumpadButtons()
|
||||
.filter((button) => ["quantity", "discount"].includes(button.value))
|
||||
.map((button) => button.disabled);
|
||||
expect(Math.abs(order.discountLines[0].priceIncl).toString()).toBe(
|
||||
(order.lines[0].priceIncl * 0.1).toPrecision(2)
|
||||
);
|
||||
|
||||
expect(receivedButtonsDisableStatue).toEqual([true, true]);
|
||||
|
||||
await productScreen.addProductToOrder(product1);
|
||||
// Animation frame doesn't work here since the debounced function used to recompute
|
||||
// discount is using eventListener, so we use setTimeout instead.
|
||||
setTimeout(() => {
|
||||
expect(Math.abs(order.discountLines[0].priceIncl).toString()).toBe(
|
||||
(order.lines[0].priceIncl * 0.1).toPrecision(2)
|
||||
);
|
||||
}, 100);
|
||||
});
|
||||
|
||||
test("addProductToOrder reapplies the global discount", async () => {
|
||||
const store = await setupPosEnv();
|
||||
const order = store.addNewOrder();
|
||||
const product = store.models["product.template"].get(5);
|
||||
const productScreen = await mountWithCleanup(ProductScreen, {
|
||||
props: { orderUuid: order.uuid },
|
||||
});
|
||||
|
||||
await productScreen.addProductToOrder(product);
|
||||
expectFormattedPrice(productScreen.total, "$ 3.45");
|
||||
expect(order.priceIncl).toBe(3.45);
|
||||
expect(order.priceExcl).toBe(3);
|
||||
expect(order.amountTaxes).toBe(0.45);
|
||||
|
||||
await store.applyDiscount(10);
|
||||
expectFormattedPrice(productScreen.total, "$ 3.10");
|
||||
expect(order.priceIncl).toBe(3.1);
|
||||
expect(order.priceExcl).toBe(2.7);
|
||||
expect(order.amountTaxes).toBe(0.4);
|
||||
|
||||
await productScreen.addProductToOrder(product);
|
||||
await animationFrame();
|
||||
expectFormattedPrice(productScreen.total, "$ 6.21");
|
||||
expect(order.priceIncl).toBeCloseTo(6.21, { margin: 1e-12 });
|
||||
expect(order.priceExcl).toBe(5.4);
|
||||
expect(order.amountTaxes).toBe(0.81);
|
||||
});
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
import { PosConfig } from "@point_of_sale/../tests/unit/data/pos_config.data";
|
||||
|
||||
PosConfig._records = PosConfig._records.map((record) => ({
|
||||
...record,
|
||||
module_pos_discount: true,
|
||||
discount_product_id: 151,
|
||||
}));
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
import { ProductProduct } from "@point_of_sale/../tests/unit/data/product_product.data";
|
||||
|
||||
ProductProduct._records = [
|
||||
...ProductProduct._records,
|
||||
{
|
||||
id: 151,
|
||||
product_tmpl_id: 151,
|
||||
lst_price: 1,
|
||||
standard_price: 0,
|
||||
display_name: "Discount",
|
||||
product_tag_ids: [],
|
||||
barcode: false,
|
||||
default_code: false,
|
||||
product_template_attribute_value_ids: [],
|
||||
product_template_variant_value_ids: [],
|
||||
},
|
||||
];
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
import { ProductTemplate } from "@point_of_sale/../tests/unit/data/product_template.data";
|
||||
|
||||
ProductTemplate._records = [
|
||||
...ProductTemplate._records,
|
||||
{
|
||||
id: 151,
|
||||
name: "Discount",
|
||||
display_name: "Discount",
|
||||
list_price: 0,
|
||||
standard_price: 0,
|
||||
type: "consu",
|
||||
service_tracking: "none",
|
||||
pos_categ_ids: [1],
|
||||
categ_id: false,
|
||||
uom_id: 1,
|
||||
available_in_pos: true,
|
||||
active: true,
|
||||
},
|
||||
];
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
import { animationFrame, expect, test } from "@odoo/hoot";
|
||||
import { setupPosEnv, getFilledOrder } from "@point_of_sale/../tests/unit/utils";
|
||||
import { definePosModels } from "@point_of_sale/../tests/unit/data/generate_model_definitions";
|
||||
|
||||
definePosModels();
|
||||
|
||||
test("isDiscountLine", async () => {
|
||||
const store = await setupPosEnv();
|
||||
const order = store.addNewOrder();
|
||||
const product1 = store.models["product.template"].get(5);
|
||||
await store.addLineToOrder(
|
||||
{
|
||||
product_tmpl_id: product1,
|
||||
qty: 1,
|
||||
},
|
||||
order
|
||||
);
|
||||
await store.applyDiscount(10);
|
||||
await animationFrame();
|
||||
const orderline = order.getSelectedOrderline();
|
||||
expect(Math.abs(orderline.price_subtotal_incl).toString()).toBe(
|
||||
((order.amount_total + order.amount_tax) * 0.1).toPrecision(2)
|
||||
);
|
||||
expect(orderline.isDiscountLine).toBe(true);
|
||||
});
|
||||
|
||||
test("Test taxes after fiscal position with discount product (should not change)", async () => {
|
||||
const store = await setupPosEnv();
|
||||
const order = await getFilledOrder(store);
|
||||
order.fiscal_position_id = store.models["account.fiscal.position"].get(1);
|
||||
await store.applyDiscount(20);
|
||||
await animationFrame();
|
||||
const discountLine = order.discountLines[0];
|
||||
const lineValues = discountLine.prepareBaseLineForTaxesComputationExtraValues();
|
||||
const recomputedTaxes = order.fiscal_position_id.getTaxesAfterFiscalPosition(
|
||||
discountLine.product_id.taxes_id
|
||||
);
|
||||
expect(recomputedTaxes).not.toBe(lineValues.tax_ids);
|
||||
});
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
import { test, describe, expect } from "@odoo/hoot";
|
||||
import { patchWithCleanup } from "@web/../tests/web_test_helpers";
|
||||
import { setupPosEnv } from "@point_of_sale/../tests/unit/utils";
|
||||
import { definePosModels } from "@point_of_sale/../tests/unit/data/generate_model_definitions";
|
||||
definePosModels();
|
||||
|
||||
describe("PoS Discount", () => {
|
||||
test("changing fiscal positions reapplies the global discount", async () => {
|
||||
const store = await setupPosEnv();
|
||||
const order = store.addNewOrder();
|
||||
|
||||
const product = store.models["product.template"].get(5);
|
||||
|
||||
await store.addLineToOrder({ product_tmpl_id: product, qty: 10 }, order);
|
||||
expect(order.priceIncl).toBe(34.5);
|
||||
expect(order.priceExcl).toBe(30);
|
||||
expect(order.amountTaxes).toBe(4.5);
|
||||
|
||||
await store.applyDiscount(10);
|
||||
expect(order.priceIncl).toBe(31.05);
|
||||
expect(order.priceExcl).toBe(27);
|
||||
expect(order.amountTaxes).toBe(4.05);
|
||||
|
||||
let [productLine, discountLine] = order.lines;
|
||||
expect(productLine.priceIncl).toBe(34.5);
|
||||
expect(discountLine.priceIncl).toBe(-3.45);
|
||||
|
||||
let resolveReapplyDiscount = null;
|
||||
const reapplyDiscountPromise = new Promise((resolve) => {
|
||||
resolveReapplyDiscount = resolve;
|
||||
});
|
||||
|
||||
patchWithCleanup(store, {
|
||||
async debouncedDiscount() {
|
||||
await super.applyDiscount(...arguments);
|
||||
resolveReapplyDiscount();
|
||||
},
|
||||
});
|
||||
|
||||
const nonTaxFP = store.models["account.fiscal.position"].get(2);
|
||||
order.fiscal_position_id = nonTaxFP;
|
||||
|
||||
await reapplyDiscountPromise;
|
||||
expect(order.priceIncl).toBe(27);
|
||||
expect(order.priceExcl).toBe(27);
|
||||
expect(order.amountTaxes).toBe(0);
|
||||
|
||||
[productLine, discountLine] = order.lines;
|
||||
expect(productLine.priceIncl).toBe(30);
|
||||
expect(discountLine.priceIncl).toBe(-3);
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import test_taxes_global_discount
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue