mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-23 17:22:04 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
51
odoo-bringout-oca-ocb-pos_discount/README.md
Normal file
51
odoo-bringout-oca-ocb-pos_discount/README.md
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# Point of Sale Discounts
|
||||
|
||||
|
||||
|
||||
This module allows the cashier to quickly give percentage-based
|
||||
discount to a customer.
|
||||
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
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`.
|
||||
|
||||
## 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
|
||||
32
odoo-bringout-oca-ocb-pos_discount/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-pos_discount/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Pos_discount Module - pos_discount
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-pos_discount/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-pos_discount/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for pos_discount. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-pos_discount/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-pos_discount/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-pos_discount/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-pos_discount/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [point_of_sale](../../odoo-bringout-oca-ocb-point_of_sale)
|
||||
4
odoo-bringout-oca-ocb-pos_discount/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-pos_discount/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon pos_discount or install in UI.
|
||||
7
odoo-bringout-oca-ocb-pos_discount/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-pos_discount/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_discount"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-pos_discount"
|
||||
```
|
||||
14
odoo-bringout-oca-ocb-pos_discount/doc/MODELS.md
Normal file
14
odoo-bringout-oca-ocb-pos_discount/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in pos_discount.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class pos_config
|
||||
class pos_session
|
||||
class res_config_settings
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-pos_discount/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-pos_discount/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: pos_discount. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon pos_discount
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-pos_discount/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-pos_discount/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-pos_discount/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-pos_discount/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-pos_discount/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-pos_discount/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon pos_discount
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-pos_discount/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-pos_discount/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': 'Point of Sale Discounts',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Point of Sale',
|
||||
'sequence': 6,
|
||||
'summary': 'Simple Discounts in the Point of Sale ',
|
||||
'description': """
|
||||
|
||||
This module allows the cashier to quickly give percentage-based
|
||||
discount to a customer.
|
||||
|
||||
""",
|
||||
'depends': ['point_of_sale'],
|
||||
'data': [
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/pos_config_views.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_discount/static/src/js/**/*',
|
||||
'pos_discount/static/src/xml/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/af.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/af.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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: Afrikaans (https://app.transifex.com/odoo/teams/41243/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."
|
||||
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 ""
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/am.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/am.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\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"
|
||||
|
||||
#. 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 ""
|
||||
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ar.po
Normal file
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ar.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 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: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"منتج الخصم مطلوب لاستخدام خاصية الخصم الشامل. اذهب إلى نقطة البيع > التهيئة "
|
||||
"> الإعدادات لإعدادها. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "السماح لأمين الصندوق بمنح خصومات على الطلب بأكمله. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "الضريبة: %s "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "نسبة الخصم الافتراضية عند الضغط على زر الخصم "
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"يبدو أن منتج الخصم لم تتم تهيئته بشكل صحيح. تأكد من تفعيل خيارَي 'قابل "
|
||||
"للبيع' و'متاح في نقطة البيع'. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "المنتج المستخدَم لتطبيق الخصم على التذكرة. "
|
||||
129
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/az.po
Normal file
129
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/az.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# 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"
|
||||
"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: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/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."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Endirim"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Endirim %"
|
||||
|
||||
#. 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 "Endirimli məhsul"
|
||||
|
||||
#. 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 "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ı"
|
||||
|
||||
#. 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 ""
|
||||
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/be.po
Normal file
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/be.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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 ""
|
||||
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/bg.po
Normal file
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/bg.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Petko Karamotchev, 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: Petko Karamotchev, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Позволете на касиера да прави отстъпка върху цялата поръчка."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Продуктът за отстъпка изглежда неправилно конфигуриран. Уверете се, че е "
|
||||
"маркиран като „Може да се продава“ и „Наличен в точка на продажба (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 ""
|
||||
"Продуктът, използван за прилагане на отстъпката върху касовата бележка."
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/bs.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/bs.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Omogućuje blagajniku odobravanje popusta na cijelu narudžbu."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 "Postotak popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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"
|
||||
|
||||
#. 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 "Popusti narudžbe"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "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 ""
|
||||
|
||||
#. 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."
|
||||
139
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ca.po
Normal file
139
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ca.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
# Bàrbara Partegàs <barbararof@gmail.com>, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
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 Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Es necessita un producte de descompte per utilitzar la funció Descompte "
|
||||
"global. Aneu al punt de venda . Configuració > Configuració per a establir-"
|
||||
"lo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permetre al caixer fer descomptes en tota la comanda. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustos de configuració"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Descompte %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Descompte en %"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producte en descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "No s'ha trobat cap producte en descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"El percentatge predeterminat de descompte en fer clic al botó Descompte"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"El producte amb descompte sembla estar mal configurat. Assegureu-vos que es "
|
||||
"marca com a \"Es pot vendre\" i \"Disponible al punt de venda\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "El producte utilitzat per aplicar el descompte al bitllet."
|
||||
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/cs.po
Normal file
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/cs.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Marta Wacławek, 2025
|
||||
#
|
||||
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: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"K použití funkce Globální sleva je třeba mít produkt se slevou. Nastavte ji "
|
||||
"v části Prodejní místo > Konfigurace > Nastavení."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Umožnit pokladníkovi poskytnout slevy na celou objednávku."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Sleva"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Sleva %"
|
||||
|
||||
#. 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 "Sleva v procentech"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Zlevněný produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenalezen žádný slevový produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Objednat slevy"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavení prodejního místa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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 ""
|
||||
|
||||
#. 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 "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
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Zdá se, že slevový produkt není správně nakonfigurován. Ujistěte se, že je "
|
||||
"označeno jako 'Může být prodáno' a 'Dostupné v místě prodeje'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Produkt použitý k uplatnění slevy na listek."
|
||||
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/da.po
Normal file
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/da.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 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: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"En rabatvare er nødvendig for at bruge Global Rabat-funktionen. Gå til Point"
|
||||
" of Sale > 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."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurer opsætning"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabat"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabat %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Procentvis rabat"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Giv rabat på et produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Der blev ikke fundet noget rabatprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Ingen moms"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Ordrerabatter"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS konfiguration"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS session"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Moms: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Standard rabatprocent, når der klikkes på Rabat-knappen"
|
||||
|
||||
#. 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 ""
|
||||
"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."
|
||||
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/de.po
Normal file
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/de.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 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: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Um die Funktion des Gesamtrabatts zu nutzen, ist ein Rabattprodukt "
|
||||
"erforderlich. Gehen Sie zu Kassensystem > Konfiguration > Einstellungen, um "
|
||||
"es einzustellen."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
"Ermöglicht dem Kassierer die Eingabe von Rabatten auf den gesamten Auftrag."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurationseinstellungen"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabatt %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 "% Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Kein Rabattprodukt gefunden"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Keine Steuer"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Auftragsrabatte"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassensystem-Konfiguration"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"Der Standard-Rabattprozentsatz beim Klicken auf die Schaltfläche Rabatt."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Das Rabattprodukt scheint falsch konfiguriert zu sein. Stellen Sie sicher, "
|
||||
"dass es als „Kann verkauft werden“ und „Verfügbar im Kassensystem“ "
|
||||
"gekennzeichnet ist."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Das Produkt wird zur Anwendung des Rabatts auf den Kassenbon benutzt."
|
||||
88
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/el.po
Normal file
88
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/el.po
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 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"
|
||||
"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"
|
||||
|
||||
#. 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
|
||||
msgid "Discount"
|
||||
msgstr "Έκπτωση"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.pos_config_view_form_inherit_pos_discount
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/discount.js:14
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__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.pos_config_view_form_inherit_pos_discount
|
||||
msgid "Discount Product"
|
||||
msgstr "Έκπτωση Είδους"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/discount.js:28
|
||||
#, python-format
|
||||
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,name:pos_discount.model_pos_config
|
||||
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 "Προεπιλεγμένο ποσοστό έκπτωσης"
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/discount.js:29
|
||||
#, 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 model the discount."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# 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 ""
|
||||
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/es.po
Normal file
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/es.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Patricia Lorenzo Bartolomé, 2023
|
||||
# Daniel Duque <danieldqmrt@gmail.com>, 2024
|
||||
# Wil Odoo, 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: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Se requiere un producto de descuento para usar la función de descuento "
|
||||
"global. Se configura en Punto de venta > Configuración > Ajustes."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permita al cajero ofrecer descuentos en todo el pedido."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Descuento %"
|
||||
|
||||
#. 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 "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "No se ha encontrado 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 impuestos"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descuentos de pedidos"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del TPV"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"El porcentaje automático de descuento al hacer clic en el botón de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"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."
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
# 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"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# 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 (Chile) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
# 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"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
# 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"
|
||||
|
|
@ -0,0 +1,73 @@
|
|||
# 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"
|
||||
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/es_MX.po
Normal file
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# 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
|
||||
#
|
||||
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: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\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"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"La función de descuento global necesita un producto de descuento. 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
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permite que el cajero aplique descuentos en toda la orden."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "% de descuento"
|
||||
|
||||
#. 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 "Porcentaje de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Producto de descuento"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Producto de descuento de PdV"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Impuesto: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"El porcentaje predeterminado de descuento al hacer clic en el botón de "
|
||||
"descuento"
|
||||
|
||||
#. 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 ""
|
||||
"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 "
|
||||
"seleccionadas."
|
||||
|
||||
#. 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."
|
||||
|
|
@ -0,0 +1,73 @@
|
|||
# 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"
|
||||
134
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/et.po
Normal file
134
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/et.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# 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"
|
||||
"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: Leaanika Randmets, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Ülemaailmse allahindluse funktsiooni kasutamiseks on vaja allahindlustoodet."
|
||||
" Selle seadistamiseks minge Kassa > Konfiguratsioon > Seaded."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Luba kassiiril teha allahindlus kogu ostule"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Seadistused"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Allahindlus"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Allahindlus %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Allahindluse protsent"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Allahinnatud toode"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Allahindlusega tooteid ei leitud"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Maksudeta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Ostu allahindlused"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa seadistused"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Vaikimisi allahindluse protsent, kui klikkida nupule \"Allahindlus\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Allahindlusega toode ei ole õigesti seadistatud. Veenduge, et see on "
|
||||
"märgitud kui 'Müüdav' ja 'Kassas nähtav'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Toode, mida kasutatakse pileti allahindluse kohaldamiseks."
|
||||
71
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/eu.po
Normal file
71
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/eu.po
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
# 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: Basque (http://www.transifex.com/odoo/odoo-9/language/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: 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 "Deskontua"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_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
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "The product used to model the discount"
|
||||
#~ msgstr "Deskontua modelatzeko erabiltzen den produktua"
|
||||
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fa.po
Normal file
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fa.po
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
# 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"
|
||||
"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: Hanna Kheradroosta, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تنظیمات پیکربندی"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fi.po
Normal file
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fi.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
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: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Yleisten alennuksen käyttäminen edellyttää alennustuotetta. Määritä se "
|
||||
"kohdassa Kassa > Määritykset > Asetukset."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Salli koko tilaukselle myönnettävät alennukset."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Alennus"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Alennus %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Alennusprosentti"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Alennustuote"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Alennustuotetta ei löytynyt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "ei veroa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Tilauksen alennukset"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapäätteen asetukset"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassapäätteen istunto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Kassan alennustuote"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Vero: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Oletusarvoinen alennusprosentti, kun napsautat Alennus-painiketta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Alennustuote näyttää olevan väärin konfiguroitu. Varmista, että se on "
|
||||
"merkitty 'Voidaan myydä' ja 'Saatavilla kassassa'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Tuote, jolla alennusta sovelletaan kuittiin."
|
||||
67
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fo.po
Normal file
67
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fo.po
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
# 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-12-22 22:35+0000\n"
|
||||
"Last-Translator: Jarnhold Nattestad <nattestads@gmail.com>\n"
|
||||
"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: 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 "Avsláttur"
|
||||
|
||||
#. 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 ""
|
||||
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fr.po
Normal file
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/fr.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 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: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Un produit de remise est nécessaire pour utiliser la fonctionnalité de "
|
||||
"Remise globale. Allez au Point de Vente > Paramètres pour le configurer."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
"Permettre au caissier de faire une remise sur la totalité de la commande."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramètres de configuration"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Remise %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Pourcentage de remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Produit de remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Aucun produit de remise trouvé"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Aucune taxe"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Remises de la commande"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuration du point de vente"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Le pourcentage de remise par défaut en cliquant sur le bouton Remise"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"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."
|
||||
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/gu.po
Normal file
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/gu.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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"
|
||||
"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: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/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."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Discount %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 ""
|
||||
|
||||
#. 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 ""
|
||||
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/he.po
Normal file
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/he.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# tomerlayline, 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: tomerlayline, 2024\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"דרוש מוצר הנחה כדי להשתמש בתכונת ההנחה הגלובלית, עבור אל קופה> תצורה> הגדרות"
|
||||
" כדי להגדיר זאת."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "אפשר לקופאי לתת הנחה לכל ההזמנה."
|
||||
|
||||
#. 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 "pos מוצר הנחה"
|
||||
|
||||
#. 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 "המוצר המשמש להחלת ההנחה על הכרטיס."
|
||||
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hi.po
Normal file
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hi.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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"
|
||||
"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"
|
||||
"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"
|
||||
|
||||
#. 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 ""
|
||||
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hr.po
Normal file
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hr.po
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
# 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"
|
||||
"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: Bole <bole@dajmi5.com>, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "Omogućuje blagajniku odobravanje popusta na cijelu narudžbu."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 "Postotak popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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"
|
||||
|
||||
#. 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 "Popusti narudžbe"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 ""
|
||||
"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 ""
|
||||
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hu.po
Normal file
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hu.po
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# krnkris, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
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: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Engedélyezi a kasszához a teljes megrendelésre az engedmény adását."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Kedvezmény"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Kedvezmény %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Árengedmény százaléka"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Termék árengedmény"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "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"
|
||||
|
||||
#. 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 ""
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hy.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/hy.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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 ""
|
||||
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/id.po
Normal file
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/id.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 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: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Diskon produk dibutuhkan untuk menggunakan fitur Diskon Global. Pergi ke POS"
|
||||
" > Konfigurasi > Pengaturan."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Mengizinkan kasir untuk memberikan diskon pada seluruh pesanan."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Pengaturan Konfigurasi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Diskon %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Persentase Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Produk Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Tidak ada diskon produk yang ditemukan"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Tidak ada pajak"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Diskon Order"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurasi Point of Sale"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Persentase diskon default saat mengeklik pada tombol Diskon"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Diskon produk sepertinya salah dikonfigurasi. Pastikan ditandai sebagai "
|
||||
"'Dapat Dijual' dan 'Tersedia di POS'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Produk digunakan untuk menetapkan diskon pada tiket."
|
||||
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/is.po
Normal file
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/is.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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"
|
||||
"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: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/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."
|
||||
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 "Stillingarvalkostir"
|
||||
|
||||
#. 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 ""
|
||||
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/it.po
Normal file
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/it.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 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: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Per utilizzare la funzionalità sconto globale è necessario un prodotto "
|
||||
"scontato. Vai su Punto Vendita > Configurazione > Impostazioni relative."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Consente al cassiere di applicare sconti sul totale dell'ordine."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Impostazioni di configurazione"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Sconto %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Percentuale sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Prodotto sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nessun prodotto sconto trovato"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Nessuna imposta"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Sconti ordine"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurazione punto vendita"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"Percentuale di sconto predefinita quando si fa clic sul pulsante Sconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Il prodotto sconto non sembra essere configurato correttamente. Controllare "
|
||||
"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."
|
||||
129
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ja.po
Normal file
129
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ja.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2025
|
||||
#
|
||||
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: Junko Augias, 2025\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "全体割引機能を使用するには、割引プロダクトが必要です。POS > 設定 > 管理設定で設定して下さい。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "キャッシャーでのオーダ全体に対する値引を許可"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "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"
|
||||
|
||||
#. 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 "割引プロダクトの設定が間違っているようです。'販売可能'と'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 "チケットに割引を適用するために使用されるプロダクト"
|
||||
67
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ka.po
Normal file
67
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ka.po
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
# 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: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: 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 "ფასდაკლება"
|
||||
|
||||
#. 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 ""
|
||||
68
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/kab.po
Normal file
68
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/kab.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# 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: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: 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 "Tuǧǧit"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config_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
|
||||
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"
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/km.po
Normal file
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/km.po
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 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: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/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."
|
||||
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 ""
|
||||
128
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ko.po
Normal file
128
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ko.po
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sarah Park, 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: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "전체 할인 기능을 사용하려면 할인 품목이 있어야 합니다. POS > 환경 설정 > 설정 메뉴로 이동하여 설정합니다."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "계산원이 전체 주문에 대해 할인을 제공하도록 허용하십시오."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "POS 할인 품목"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "세금: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "할인 버튼 클릭 시 적용되는 할인율 기본값"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "할인 상품이 잘못 구성된 것 같습니다. '판매 가능' 및 '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 "티켓에 할인을 적용 시 사용되는 품목입니다."
|
||||
83
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lb.po
Normal file
83
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lb.po
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
# 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"
|
||||
"PO-Revision-Date: 2019-08-26 09:13+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/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
|
||||
#: 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
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.pos_config_view_form_inherit_pos_discount
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/discount.js:14
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__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.pos_config_view_form_inherit_pos_discount
|
||||
msgid "Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/discount.js:28
|
||||
#, python-format
|
||||
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,name:pos_discount.model_pos_config
|
||||
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 ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. openerp-web
|
||||
#: code:addons/pos_discount/static/src/js/discount.js:29
|
||||
#, 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 model the discount."
|
||||
msgstr ""
|
||||
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lo.po
Normal file
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lo.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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 ""
|
||||
131
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lt.po
Normal file
131
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lt.po
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
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: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Leisti kasininkui suteikti nuolaidą visam užsakymui."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigūracijos nustatymai"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Nuolaida"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Nuolaida %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Nuolaidos procentas"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Nuolaidinis produktas"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nerasta nuolaidos produktas"
|
||||
|
||||
#. 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 "Užsakymo nuolaidos"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pardavimo taško konfigūracija"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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 ""
|
||||
|
||||
#. 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 ""
|
||||
"Nuolaidinis produktas atrodo nustatytas neteisingai. Įsitikinkite kad jis "
|
||||
"pažymėtas kaip \"Gali būti parduodamas\" ir \"Galimas pardavimo taške\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
||||
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lv.po
Normal file
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/lv.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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"
|
||||
"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: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Atļaut kasierim iedot atlaidi visam pasūtījumam."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurācijas uzstādījumi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Atlaide"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Atlaide %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Atlaides procents"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Atlaides prece"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nav atrasta atlaides prece"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Nav nodokļa"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Pasūtījuma atlaides"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pārdošanas punkta konfigurācija"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. 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 ""
|
||||
73
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/mk.po
Normal file
73
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/mk.po
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Aleksandar Vangelovski <aleksandarv@hbee.eu>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:06+0000\n"
|
||||
"PO-Revision-Date: 2016-04-20 11:09+0000\n"
|
||||
"Last-Translator: Aleksandar Vangelovski <aleksandarv@hbee.eu>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/"
|
||||
"mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#: 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 "Попуст"
|
||||
|
||||
#. 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
|
||||
#, 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."
|
||||
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 "Производот што се користи да се моделира попустот"
|
||||
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ml.po
Normal file
127
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ml.po
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
# 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 ""
|
||||
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/mn.po
Normal file
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/mn.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# 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"
|
||||
"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: tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/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."
|
||||
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 ""
|
||||
128
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ms.po
Normal file
128
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ms.po
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
# 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 ""
|
||||
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/nb.po
Normal file
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/nb.po
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 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: Marius Stedjan <marius@stedjan.com>, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 "La ekspeditør gi rabatter på hele ordren."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabatt %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 "Rabattprosent"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukter funnet"
|
||||
|
||||
#. 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 "Ordrerabatter"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapunkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kasseøkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 ""
|
||||
"Produktet for rabatt ser ut til å være feilkonfigurert. Forsikre deg om at "
|
||||
"det er flagget som 'Kan selges' og 'Tilgjengelig i kassasystemet'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
||||
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/nl.po
Normal file
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/nl.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 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: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Een kortingsproduct is vereist om de Globale Kortingsfunctie te gebruiken. "
|
||||
"Ga naar Kassa > Configuratie > Instellingen om het in te stellen."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Sta de kassamedewerker toe om korting te geven op het hele order."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Korting"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Korting %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Kortingspercentage"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Kortingsproduct"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Geen kortingsproduct gevonden"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Geen btw"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Orderkortingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa-instellingen"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Het standaard kortingspercentage als je op de kortingsknop klikt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Het kortingsproduct lijkt foutief geconfigureerd te zijn. Zorg ervoor dat "
|
||||
"het aangeduid is als 'Kan verkocht' worden en 'Beschikbaar in Kassa'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Het product gebruikt om de korting op het ticket toe te passen."
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/no.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/no.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\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"
|
||||
|
||||
#. 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 ""
|
||||
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/pl.po
Normal file
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/pl.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
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: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Przeceniony produkt jest wymagany do użycia Globalnej Przeceny. Idź do Punkt"
|
||||
" Sprzedaży > Konfiguracja > Ustawienia aby go skonfigurować."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Pozwól kasjerowi dać upusty na całe zamówienie."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Upust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Upust %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
#, python-format
|
||||
msgid "Discount Percentage"
|
||||
msgstr "Procent upustu"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Upust dla produktu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nie znaleziono produktu z upustem."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Bez podatku."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Upusty dla zamówienia"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfiguracja punktu sprzedaży"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Podatek: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr ""
|
||||
"Domyślna wartość procentowa upustu gdy przycisk Upust zostanie kliknięty."
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Produkt z upustem wygląda na niepopprawnie skonfigurowany. Upewnij się że "
|
||||
"jest oflagowany jako 'do sprzedaży' i 'dostępny w punkcie sprzedaży'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Produkt użyty do zastosowania upustu na bilecie."
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
# 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: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
134
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/pt.po
Normal file
134
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/pt.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Maitê Dietze, 2025
|
||||
#
|
||||
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: Maitê Dietze, 2025\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"É necessário um produto de desconto para utilizar o recurso de desconto "
|
||||
"global. Acesse Ponto de Venda > Configuração > Definições para configurá-lo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permitir que o caixa atribua descontos em toda a encomenda."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Desconto %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Percentagem de Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Desconto em Produto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenhum produto de desconto encontrado"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Descontos da Encomenda"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de Venda"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
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 "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
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"O produto de desconto parece mal configurado. Certifique-se de que está "
|
||||
"marcado como 'Pode ser vendido' e 'Disponível no ponto de venda'."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "O produto utilizado para aplicar o desconto no ticket."
|
||||
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/pt_BR.po
Normal file
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Adriano Prado <adrianojprado@gmail.com>, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 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: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"É necessário um produto de desconto para utilizar o recurso de desconto "
|
||||
"global. Acesse Ponto de Venda > Configuração > Definições para configurá-lo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permitir ao caixa dar descontos em toda a compra."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Desconto %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "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"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Descontos do pedido"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de 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"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Imposto: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "O percentual de desconto padrão ao clicar no botão Desconto"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"O produto com desconto parece mal configurado. Certifique-se de que está "
|
||||
"sinalizado 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."
|
||||
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ro.po
Normal file
135
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ro.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Betty Keresztesi, 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: Betty Keresztesi, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. 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 ""
|
||||
"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."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Permite casierului acordarea unei reduceri pentru întreaga comandă"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Setări de configurare"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Reducere"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Reducere %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 "Procent reducere"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Reducere produs"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Fără taxe"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Reduceri comandă"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurarea Punctului de Vânzare"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesiune Punct de vânzare"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_res_config_settings__pos_discount_product_id
|
||||
msgid "Pos Discount Product"
|
||||
msgstr "Produs Discount POS"
|
||||
|
||||
#. 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 ""
|
||||
"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
|
||||
msgid ""
|
||||
"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."
|
||||
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ru.po
Normal file
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ru.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
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: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Для использования функции глобальной скидки необходим продукт со скидкой. "
|
||||
"Перейдите в пункт продажи > Конфигурация > Настройки, чтобы настроить его."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Разрешить кассиру сделать скидку на весь заказ."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "% cкидки"
|
||||
|
||||
#. 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 "Продукт со скидкой Pos"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "Налог: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Процент скидки по умолчанию при нажатии на кнопку скидки"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Продукт, используемый для применения скидки к билету."
|
||||
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sk.po
Normal file
130
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sk.po
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
# 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"
|
||||
"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: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Povoliť pokladníkovi dávať zľavy na celú objednávku."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Zľava"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Zľava %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Percentá zľavy"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Zľavniť produkt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Nenašli sa žiadne zľavnené produkty"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Zľavy objednávky"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurácia miesta predaja"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
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 ""
|
||||
"Produkt so zľavou sa zdá byť nesprávne nakonfigurovaný. Uistite sa, že je "
|
||||
"označený ako „Môže sa predať“ a „Dostupné v predajnom mieste“."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
||||
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sl.po
Normal file
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sl.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
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: Tadej Lupšina <tadej@hbs.si>, 2022\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Dovoli v blagajni določanje popustov na celotno naročilo."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Uredi nastavitve"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Discount"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "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 "Popust v odstotkih"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Proizvod popusta"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Izdelka s popustom ni mogoče najti"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "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 ""
|
||||
|
||||
#. 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 ""
|
||||
"Izdelek s popustom se zdi napačno konfiguriran. Prepričajte se, da je "
|
||||
"označeno kot »Lahko se prodaja« in »Na voljo v POSu«."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr ""
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sq.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sq.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\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"
|
||||
|
||||
#. 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 ""
|
||||
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sr.po
Normal file
133
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sr.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# 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."
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 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"
|
||||
"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"
|
||||
|
||||
#. 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
|
||||
msgid "Discount"
|
||||
msgstr "Popust"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.pos_config_view_form_inherit_pos_discount
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.pos_config_view_form_inherit_pos_discount
|
||||
msgid "Discount Product"
|
||||
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"
|
||||
msgstr ""
|
||||
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sv.po
Normal file
136
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sv.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * 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
|
||||
#
|
||||
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: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"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."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Tillåt kassören att ge rabatt på hela beställningen."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Rabatt"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "Rabatt %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. 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 "Rabatt i procent"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Rabattprodukt"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "Ingen rabattprodukt hittad"
|
||||
|
||||
#. 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 "Order Rabatter"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassakonfigurering"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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 ""
|
||||
|
||||
#. 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 "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
|
||||
msgid ""
|
||||
"The discount product seems misconfigured. Make sure it is flagged as 'Can be"
|
||||
" Sold' and 'Available in Point of Sale'."
|
||||
msgstr ""
|
||||
"Rabattprodukten verkar vara felkonfigurerad. Se till att den är markerad som"
|
||||
" \"Kan säljas\" och \"Tillgänglig i kassan\"."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Produkten som användes för att tillämpa rabatten på biljetten."
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sw.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/sw.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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 ""
|
||||
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ta.po
Normal file
123
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/ta.po
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
# 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 ""
|
||||
134
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/th.po
Normal file
134
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/th.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 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: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"จำเป็นต้องมีสินค้าลดราคา เพื่อใช้คุณสมบัติส่วนลดแบบทั่วโลก เพื่อตั้งค่า "
|
||||
"ไปที่การขายหน้าร้าน > การกำหนดค่า > การตั้งค่า"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "อนุญาตให้แคชเชียร์มอบส่วนลดสำหรับคำสั่งทั้งหมด"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ตั้งค่าการกำหนดค่า"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "POS ส่วนลดสินค้า"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "Tax: %s"
|
||||
msgstr "ภาษี: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "เปอร์เซ็นต์ส่วนลดเริ่มต้นเมื่อคลิกที่ปุ่มส่วนลด"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "สินค้าที่ใช้ในการรับส่วนลดบนทิกเก็ต"
|
||||
140
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/tr.po
Normal file
140
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/tr.po
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Yedigen, 2022
|
||||
# Halil, 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: Halil, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Global İndirim özelliğini kullanmak için bir indirim ürünü gereklidir. "
|
||||
"Ayarlamak için Satış Noktası > Yapılandırma > Ayarlar'a gidin."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Kasiyerin tüm siparişe indirim verebilmesine izin verin."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Yapılandırma Ayarları"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "İndirim"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "İndirim %"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "İndirim Yüzde"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "İndirimli Ürün"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No discount product found"
|
||||
msgstr "İndirimli ürün bulunamadı"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/js/DiscountButton.js:0
|
||||
#, python-format
|
||||
msgid "No tax"
|
||||
msgstr "Vergi yok"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Sipariş İndirimleri"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Noktası Yapılandırması"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "İndirim düğmesine tıklandığında varsayılan indirim yüzdesi"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"İndirimli ürün yanlış yapılandırılmış görünüyor. İndirimli ürünün, "
|
||||
"'Satılabilir' ve 'Satış Noktasında Mevcut' olarak işaretlendiğinden emin "
|
||||
"olun."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "İndirimi bilete uygulamak için kullanılan ürün."
|
||||
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/uk.po
Normal file
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/uk.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# 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"
|
||||
"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: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Щоб скористатися функцією глобальної знижки, потрібен товар зі знижкою. "
|
||||
"Перейдіть до точки продажу > Конфігурація > Параметри, щоб налаштувати це."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Дозволити касиру робити знижку на все замовлення."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налаштування"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Податок: %s"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Типовий відсоток знижки при натисканні на кнопку Знижка"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Товар, який використовується для застосування знижки на квиток."
|
||||
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/vi.po
Normal file
132
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/vi.po
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 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: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr ""
|
||||
"Cần có một sản phẩm chiết khấu để sử dụng tính năng Giảm giá toàn bộ. Đi đến"
|
||||
" Điểm bán lẻ > Cấu hình > Cài đặt để thiết lập."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "Cho phép thu ngân chiết khấu toàn bộ đơn hàng."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cài đặt cấu hình"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/xml/DiscountButton.xml:0
|
||||
#, python-format
|
||||
msgid "Discount"
|
||||
msgstr "Chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount %"
|
||||
msgstr "% chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "Phần trăm chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__discount_product_id
|
||||
#: model_terms:ir.ui.view,arch_db:pos_discount.res_config_settings_view_form
|
||||
msgid "Discount Product"
|
||||
msgstr "Sản phẩm chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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"
|
||||
|
||||
#. 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ế"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,field_description:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Order Discounts"
|
||||
msgstr "Chiết khấu đơn hàng"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Cấu hình điểm bán lẻ"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Phiên 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 "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"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_pc
|
||||
#: model:ir.model.fields,help:pos_discount.field_res_config_settings__pos_discount_pc
|
||||
msgid "The default discount percentage when clicking on the Discount button"
|
||||
msgstr "Phần trăm chiết khấu mặc định khi bấm vào nút Chiết khấu"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 ""
|
||||
"Sản phẩm chiết khấu có vẻ đã được cấu hình sai. Hãy bảo đảm gắn cờ sản phẩm "
|
||||
"là 'Có thể bán' và 'Có sẵn trong POS'. "
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__discount_product_id
|
||||
msgid "The product used to apply the discount on the ticket."
|
||||
msgstr "Sản phẩm được dùng để áp dụng chiết khấu trên phiếu."
|
||||
128
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/zh_CN.po
Normal file
128
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,128 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_discount
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
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: Raymond Yu <cl_yu@hotmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "要使用全局折扣功能,需要有一个折扣产品。进入销售点 > 配置 > 设置来设置它。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "允许出纳在整张订单给出折扣"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置设置"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "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"
|
||||
|
||||
#. 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 "折扣商品配置错误。请确认折扣商品被标记为可销售并且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 "用来在票面上应用折扣的产品。"
|
||||
129
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/zh_TW.po
Normal file
129
odoo-bringout-oca-ocb-pos_discount/pos_discount/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# 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"
|
||||
"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, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-python
|
||||
#: code:addons/pos_discount/models/pos_config.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A discount product is needed to use the Global Discount feature. Go to Point"
|
||||
" of Sale > Configuration > Settings to set it."
|
||||
msgstr "要使用全局折扣功能,需要有一個折扣產品。進入銷售點 > 配置 > 設置來設置它。"
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model.fields,help:pos_discount.field_pos_config__iface_discount
|
||||
msgid "Allow the cashier to give discounts on the whole order."
|
||||
msgstr "允許出納在整張訂單給出折扣."
|
||||
|
||||
#. module: pos_discount
|
||||
#: model:ir.model,name:pos_discount.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置設定"
|
||||
|
||||
#. module: pos_discount
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_discount/static/src/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 "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"
|
||||
|
||||
#. 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 "折扣產品似乎設定不當。確保它被標記為 \"可以出售\" 和 \"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 "在票據上應用折扣的產品。"
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# 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
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = 'pos.config'
|
||||
|
||||
iface_discount = fields.Boolean(string='Order Discounts', help='Allow the cashier to give discounts on the whole order.')
|
||||
discount_pc = fields.Float(string='Discount Percentage', help='The default discount percentage when clicking on the Discount button', default=10.0)
|
||||
discount_product_id = fields.Many2one('product.product', string='Discount Product',
|
||||
domain="[('sale_ok', '=', True)]", help='The product used to apply the discount on the ticket.')
|
||||
|
||||
@api.model
|
||||
def _default_discount_value_on_module_install(self):
|
||||
configs = self.env['pos.config'].search([])
|
||||
open_configs = (
|
||||
self.env['pos.session']
|
||||
.search(['|', ('state', '!=', 'closed'), ('rescue', '=', True)])
|
||||
.mapped('config_id')
|
||||
)
|
||||
# Do not modify configs where an opened session exists.
|
||||
product = self.env.ref("point_of_sale.product_product_consumable", raise_if_not_found=False)
|
||||
for conf in (configs - open_configs):
|
||||
conf.discount_product_id = product if conf.module_pos_discount and product and (not product.company_id or product.company_id == conf.company_id) else False
|
||||
|
||||
def open_ui(self):
|
||||
for config in self:
|
||||
if not self.current_session_id and config.module_pos_discount and not config.discount_product_id:
|
||||
raise UserError(_('A discount product is needed to use the Global Discount feature. Go to Point of Sale > Configuration > Settings to set it.'))
|
||||
return super().open_ui()
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
# -*- 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,22 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models, api
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
# pos.config fields
|
||||
pos_discount_pc = fields.Float(related='pos_config_id.discount_pc', readonly=False)
|
||||
pos_discount_product_id = fields.Many2one('product.product', compute='_compute_pos_discount_product_id', store=True, readonly=False)
|
||||
|
||||
@api.depends('company_id', 'pos_module_pos_discount', 'pos_config_id')
|
||||
def _compute_pos_discount_product_id(self):
|
||||
default_product = self.env.ref("point_of_sale.product_product_consumable", raise_if_not_found=False) or self.env['product.product']
|
||||
for res_config in self:
|
||||
discount_product = res_config.pos_config_id.discount_product_id or default_product
|
||||
if res_config.pos_module_pos_discount and (not discount_product.company_id or discount_product.company_id == res_config.company_id):
|
||||
res_config.pos_discount_product_id = discount_product
|
||||
else:
|
||||
res_config.pos_discount_product_id = False
|
||||
|
|
@ -0,0 +1,91 @@
|
|||
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;
|
||||
});
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
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);
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
<?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,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<function model="pos.config" name="_default_discount_value_on_module_install"/>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.pos_discount</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="point_of_sale.res_config_settings_view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<div id="warning_text_pos_discount" position="replace">
|
||||
<div class="row">
|
||||
<label string="Discount Product" for="pos_discount_product_id" class="col-lg-3 o_light_label"/>
|
||||
<field name="pos_discount_product_id" attrs="{'required':[('pos_module_pos_discount', '=', True)]}"/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label string="Discount %" for="pos_discount_pc" class="col-lg-3 o_light_label"/>
|
||||
<field name="pos_discount_pc"/>
|
||||
</div>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
42
odoo-bringout-oca-ocb-pos_discount/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-pos_discount/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-pos_discount"
|
||||
version = "16.0.0"
|
||||
description = "Point of Sale Discounts - Simple Discounts in the Point of Sale "
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-point_of_sale>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["pos_discount"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue