mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-24 20:22:03 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
48
odoo-bringout-oca-ocb-pos_restaurant_adyen/README.md
Normal file
48
odoo-bringout-oca-ocb-pos_restaurant_adyen/README.md
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
# POS Restaurant Adyen
|
||||
|
||||
Odoo addon: pos_restaurant_adyen
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_restaurant_adyen
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- pos_adyen
|
||||
- pos_restaurant
|
||||
- payment_adyen
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: POS Restaurant Adyen
|
||||
- **Version**: 1.0
|
||||
- **Category**: Point of Sale
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `pos_restaurant_adyen`.
|
||||
|
||||
## 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
|
||||
|
|
@ -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_restaurant_adyen Module - pos_restaurant_adyen
|
||||
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.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for pos_restaurant_adyen. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [pos_adyen](../../odoo-bringout-oca-ocb-pos_adyen)
|
||||
- [pos_restaurant](../../odoo-bringout-oca-ocb-pos_restaurant)
|
||||
- [payment_adyen](../../odoo-bringout-oca-ocb-payment_adyen)
|
||||
4
odoo-bringout-oca-ocb-pos_restaurant_adyen/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-pos_restaurant_adyen/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_restaurant_adyen or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_restaurant_adyen"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-pos_restaurant_adyen"
|
||||
```
|
||||
15
odoo-bringout-oca-ocb-pos_restaurant_adyen/doc/MODELS.md
Normal file
15
odoo-bringout-oca-ocb-pos_restaurant_adyen/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in pos_restaurant_adyen.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class pos_order
|
||||
class pos_payment
|
||||
class pos_payment_method
|
||||
class pos_session
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: pos_restaurant_adyen. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon pos_restaurant_adyen
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -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_restaurant_adyen/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-pos_restaurant_adyen/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_restaurant_adyen
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'POS Restaurant Adyen',
|
||||
'version': '1.0',
|
||||
'category': 'Point of Sale',
|
||||
'sequence': 6,
|
||||
'summary': 'Adds American style tipping to Adyen',
|
||||
'depends': ['pos_adyen', 'pos_restaurant', 'payment_adyen'],
|
||||
'data': [
|
||||
'views/pos_payment_method_views.xml',
|
||||
],
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_restaurant_adyen/static/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
from odoo.addons.payment_adyen.controllers.main import AdyenController
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PosRestaurantAdyenController(AdyenController):
|
||||
|
||||
@http.route()
|
||||
def adyen_webhook(self, **post):
|
||||
if post.get('eventCode') in ['CAPTURE', 'AUTHORISATION_ADJUSTMENT'] and post.get('success') != 'true':
|
||||
_logger.warning('%s for transaction_id %s failed', post.get('eventCode'), post.get('originalReference'))
|
||||
return super(PosRestaurantAdyenController, self).adyen_webhook(**post)
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "حساب تاجر Adyen "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "طلبات نقطة البيع "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "طرق الدفع في نقطة البيع "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "مدفوعات نقطة البيع "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "جلسة نقطة البيع"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "رمز حساب تاجر نقطة البيع المُستخدَم في Adyen "
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2023\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Satış Nöqtəsi Sifarişləri"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Satış Nöqtəsi Ödəniş Üsulları"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Satış Nöqtəsi Ödənişləri"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Nöqtəsi Sessiyası"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Поръчки на центъра за продажби"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Методи на плащане за точка на продажба (POS)"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Сесия на център за продажби"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen trgovinski račun"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Nalozi POS-a"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Načini plaćanja na prodajnom mjestu"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Plaćanja na prodajnom mjestu"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Kod trgovinskog računa prodajnog mjesta korišćen u Adyen-u"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# jabelchi, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# marcescu, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: marcescu, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Compte comercial de Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Comandes del Punt de Venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Mètodes de pagament de punt de venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pagaments de punt de venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessió del Punt de Venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "El codi de compte comercial POS utilitzat a Adyen"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jiří Podhorecký, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Obchodní účet Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Objednávky Prodejního místa"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Platební podmíky v místě prodeje"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Platby v místě prodeje"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sezení Prodejního místa"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Kód účtu obchodníka v místě prodeje používaný v systému Adyen"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen Handels Konto"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "POS ordrer"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Point of Sale betalingsmetoder"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Point of Sale betalinger"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS session"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "POS-handelskontokoden der bruges i Adyen"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen-Händler-Konto"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Kassenverkäufe"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Zahlungsmethoden des Kassensystems"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Kassenzahlungen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassensitzung"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Der in Adyen verwendete Händlerkontocode des Kassensystems"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Cuenta de comerciante de Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Pedidos del TPV"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de pago en el punto de venta "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pagos en el punto de venta"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión TPV"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "La cuenta de comerciante del TPV que se usa en Adyen"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Cuenta de comerciante de Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Comandas del punto de venta"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de pago del punto de venta"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pagos en punto de venta"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión del punto de venta"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "El código de cuenta de comerciante del PdV utilizado en Adyen"
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Algo Kärp <algokarp@gmail.com>, 2022
|
||||
# Maidu Targama <m.targama@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Anna, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen kaupmehe konto"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Kassa tellimused"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassa maksemeetodid"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Müügikoha maksed"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassa Sessioon"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Adyen'is kasutatav POS kaupmehe konto kood"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "سفارشات پایانه فروش"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "روش های پرداخت پایانه فروش"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "پرداخت های پایانه فروش"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "جلسه پایانه فروش"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen-kauppiastili"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Kassapäätteen tilaukset"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassan maksutavat"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Kassan maksut"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassapäätteen istunto"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Adyenissä käytetty kassan kauppatilin koodi"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Compte marchand Ayden"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Commandes du point de vente"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Modes de paiement du point de vente"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Paiements du point de vente"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Session du point de vente"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Le code PdV du compte marchand utilisé sur Ayden"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "הזמנות קופה"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "אמצעי תשלום קופה"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "תשלומי קופה"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "משמרת קופה "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Hrvoje Sić <hrvoje.sic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Nalozi POS-a"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Načini plaćanja na prodajnom mjestu"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Plaćanja na prodajnom mjestu"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Értékesítési pont rendelések"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Értékesítési Pont Értékesítési folyamat"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Akun Pedagang Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Order Point of Sale"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metode Pembayaran Point of Sale POS"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pembayaran POS"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesi Point of Sale"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Kode akun pedagang POS yang digunakan di Adyen"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Account commerciante Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Ordini punto vendita"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metodi di pagamento punto vendita"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pagamenti punto vendita"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessione punto vendita"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Codice account commerciante per POS usato in Adyen"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyenマーチャントアカウント"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "POSオーダ"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS支払い方法"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "POS支払い"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POSセッション"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Adyenで使用されているマーチャントアカウントコード"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "ចំណុចនៃការបញ្ជាទិញការលក់"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ចំណុចនៃវគ្គលក់"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Daye Jeong, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen 판매자 계정"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "점포판매시스템 주문"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS 결제 수단"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "점포판매시스템 결제"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "점포판매시스템 기간"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Adyen에서 사용되는 POS 판매자 계정 코드"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "PT užsakymai"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Pardavimo taško mokėjimo būdai"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pardavimų Taško Mokėjimai"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pardavimo taško sesija"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Pārdošanas punkta pasūtījumi"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Pārdošanas punkta maksājumu metodes"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pārdošanas punkta maksājumi"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pārdošanas punkta sesija"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "പോയിന്റ് ഓഫ് സെയിൽ ഒർടേഴ്സ് "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "പോയിന്റ് ഓഫ് സെയിൽ പേയ്മെന്റ്സ് "
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "പോയിന്റ് ഓഫ് സെയിൽ സെഷൻ"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Sanjaajamts Badamjunai <b.sanjaajamtsfc@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "ПОС захиалга"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Төлбөрийн аргууд"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Борлуулалты цэгийн төлбөрүүд"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ПОС сэшн"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kaedah Pembayaran Tempat Jualan"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Kassaordrer"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Betalingsmetoder for Kassasystem"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Kassabetalinger"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kasseøkt"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen handelaarsaccount"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Kassaorders"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassa betaalmethodes"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Kassabetalingen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasessie"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "De Kassa-handelaarsaccountcode die wordt gebruikt in Adyen"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Konto kupieckie Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Zamówienia Punktu Sprzedaży"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metody płatności punktu sprzedaży"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Płatności punktu sprzedaży"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesja punktu sprzedaży"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Kod konta kupieckiego POS używany w Adyen"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2024
|
||||
# Vasco Rodrigues, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Vasco Rodrigues, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Ordens do Ponto de Venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de Pagamento do Ponto de Venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pagamentos do Ponto de Vendas"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessão do Ponto de Venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Layna Nascimento, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Layna Nascimento, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Conta do comerciante Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Pedidos do Ponto de Vendas"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de pagamento do ponto de venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Pagamentos de Ponto de Venda"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessão do Ponto de Vendas"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "O código da conta de comerciante de PDV utilizado no Adyen"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Betty Keresztesi, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Cont comerciant Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Comenzile Punctului de vânzare"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metode plată Punct de Vânzare"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Plăți Punct de Vânzare"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesiune Punct de vânzare"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Codul contului de comerciant POS utilizat în Adyen"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Торговый счет Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Заказы точки продажи"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Способы оплаты в торговых точках"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Платежи в точках продаж"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Смена"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Код торгового счета POS, используемый в Adyen"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Objednávky miesta predaja"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Relácia miesta predaja"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Naročila POS"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Seja POS"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen Merchant Account"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Point of Sale Orders"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Point of Sale Payment Methods"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Point of Sale Payments"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesija prodajnog mesta"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "The POS merchant account code used in Adyen"
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen handelskonto"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Kassaorder"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassa Betalningsmetoder"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Kassa-betalningar"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasession"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "POS-säljarkontokoden som används i Adyen"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wichanon Jamwutthipreecha, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "บัญชีผู้ค้า Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "คำสั่งขายหน้าร้าน"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "วิธีการชำระเงินการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "การชำระเงินระบบขายหน้าร้าน"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "เซสชั่นการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "รหัสบัญชีผู้ค้า POS ที่ใช้ใน Adyen"
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen Ticari Hesap"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Satış Noktası Siparişi"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Satış Noktası Ödeme Yöntemleri"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Satış Noktası Ödemeleri"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Noktası Oturumu"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Adyen'de kullanılan POS işyeri hesap kodu"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Обліковий запис Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Замовлення точки продажу"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Способи оплати точки продажу"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Платежі точки продажу"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Сесія точки продажу"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Код облікового запису точки продажу використано в Adyen"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Tài khoản người bán Adyen"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "Đơn hàng điểm bán lẻ"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Phương thức thanh toán điểm bán lẻ"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "Thanh toán điểm bán lẻ"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Phiên POS"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Mã tài khoản người bán POS sử dụng trong Adyen"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen 商家账户"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "POS订单"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS支付方式"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "销售点支付"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS会话"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Adyen 中使用的 POS 商家帐户代码"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_restaurant_adyen
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:34+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_restaurant_adyen
|
||||
#: model:ir.model.fields,field_description:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "Adyen Merchant Account"
|
||||
msgstr "Adyen 商家賬號"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_order
|
||||
msgid "Point of Sale Orders"
|
||||
msgstr "POS營業點訂單"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS付款條件"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_payment
|
||||
msgid "Point of Sale Payments"
|
||||
msgstr "POS營業點付款"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model,name:pos_restaurant_adyen.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS 操作時段"
|
||||
|
||||
#. module: pos_restaurant_adyen
|
||||
#: model:ir.model.fields,help:pos_restaurant_adyen.field_pos_payment_method__adyen_merchant_account
|
||||
msgid "The POS merchant account code used in Adyen"
|
||||
msgstr "Adyen 中使用的 POS 商戶帳號代碼"
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import pos_order
|
||||
from . import pos_payment
|
||||
from . import pos_payment_method
|
||||
from . import pos_session
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class PosOrder(models.Model):
|
||||
_inherit = 'pos.order'
|
||||
|
||||
def action_pos_order_paid(self):
|
||||
res = super(PosOrder, self).action_pos_order_paid()
|
||||
if not self.config_id.set_tip_after_payment:
|
||||
payment_lines = self.payment_ids.filtered(lambda line: line.payment_method_id.use_payment_terminal == 'adyen')
|
||||
for payment_line in payment_lines:
|
||||
payment_line._adyen_capture()
|
||||
return res
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
import requests
|
||||
|
||||
from odoo import models
|
||||
|
||||
TIMEOUT = 10
|
||||
|
||||
|
||||
class PosPayment(models.Model):
|
||||
_inherit = 'pos.payment'
|
||||
|
||||
def _update_payment_line_for_tip(self, tip_amount):
|
||||
"""Capture the payment when a tip is set."""
|
||||
res = super(PosPayment, self)._update_payment_line_for_tip(tip_amount)
|
||||
if self.payment_method_id.use_payment_terminal == 'adyen':
|
||||
self._adyen_capture()
|
||||
return res
|
||||
|
||||
def _adyen_capture(self):
|
||||
data = {
|
||||
'originalReference': self.transaction_id,
|
||||
'modificationAmount': {
|
||||
'value': int(self.amount * 10**self.currency_id.decimal_places),
|
||||
'currency': self.currency_id.name,
|
||||
},
|
||||
'merchantAccount': self.payment_method_id.adyen_merchant_account,
|
||||
}
|
||||
|
||||
return self.payment_method_id.proxy_adyen_request(data, 'capture')
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# coding: utf-8
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class PosPaymentMethod(models.Model):
|
||||
_inherit = 'pos.payment.method'
|
||||
|
||||
adyen_merchant_account = fields.Char(help='The POS merchant account code used in Adyen')
|
||||
|
||||
def _get_adyen_endpoints(self):
|
||||
return {
|
||||
**super(PosPaymentMethod, self)._get_adyen_endpoints(),
|
||||
'adjust': 'https://pal-%s.adyen.com/pal/servlet/Payment/v52/adjustAuthorisation',
|
||||
'capture': 'https://pal-%s.adyen.com/pal/servlet/Payment/v52/capture',
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class PosSession(models.Model):
|
||||
_inherit = 'pos.session'
|
||||
|
||||
def _loader_params_pos_payment_method(self):
|
||||
result = super()._loader_params_pos_payment_method()
|
||||
result['search_params']['fields'].append('adyen_merchant_account')
|
||||
return result
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
odoo.define('pos_restaurant_adyen.payment', function (require) {
|
||||
"use strict";
|
||||
|
||||
var PaymentAdyen = require('pos_adyen.payment');
|
||||
|
||||
PaymentAdyen.include({
|
||||
_adyen_pay_data: function () {
|
||||
var data = this._super();
|
||||
|
||||
if (data.SaleToPOIRequest.PaymentRequest.SaleData.SaleToAcquirerData) {
|
||||
data.SaleToPOIRequest.PaymentRequest.SaleData.SaleToAcquirerData += "&authorisationType=PreAuth";
|
||||
} else {
|
||||
data.SaleToPOIRequest.PaymentRequest.SaleData.SaleToAcquirerData = "authorisationType=PreAuth";
|
||||
}
|
||||
|
||||
return data;
|
||||
},
|
||||
|
||||
send_payment_adjust: function (cid) {
|
||||
var order = this.pos.get_order();
|
||||
var line = order.get_paymentline(cid);
|
||||
var data = {
|
||||
originalReference: line.transaction_id,
|
||||
modificationAmount: {
|
||||
value: parseInt(line.amount * Math.pow(10, this.pos.currency.decimal_places)),
|
||||
currency: this.pos.currency.name,
|
||||
},
|
||||
merchantAccount: this.payment_method.adyen_merchant_account,
|
||||
additionalData: {
|
||||
industryUsage: 'DelayedCharge',
|
||||
},
|
||||
};
|
||||
|
||||
return this._call_adyen(data, 'adjust');
|
||||
},
|
||||
|
||||
canBeAdjusted: function (cid) {
|
||||
var order = this.pos.get_order();
|
||||
var line = order.get_paymentline(cid);
|
||||
return ['mc', 'visa', 'amex', 'discover'].includes(line.card_type);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="pos_payment_method_view_form_inherit_pos_restaurant_adyen" model="ir.ui.view">
|
||||
<field name="name">pos.payment.method.form.inherit.restaurant.adyen</field>
|
||||
<field name="model">pos.payment.method</field>
|
||||
<field name="inherit_id" ref="pos_adyen.pos_payment_method_view_form_inherit_pos_adyen"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='adyen_terminal_identifier']" position="after">
|
||||
<field name="adyen_merchant_account" attrs="{'invisible': [('use_payment_terminal', '!=', 'adyen')], 'required': [('use_payment_terminal', '=', 'adyen')]}"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
44
odoo-bringout-oca-ocb-pos_restaurant_adyen/pyproject.toml
Normal file
44
odoo-bringout-oca-ocb-pos_restaurant_adyen/pyproject.toml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-pos_restaurant_adyen"
|
||||
version = "16.0.0"
|
||||
description = "POS Restaurant Adyen - Adds American style tipping to Adyen"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-pos_adyen>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-pos_restaurant>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-payment_adyen>=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_restaurant_adyen"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue