mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-23 05:02:02 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
46
odoo-bringout-oca-ocb-pos_six/README.md
Normal file
46
odoo-bringout-oca-ocb-pos_six/README.md
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# POS Six
|
||||
|
||||
Odoo addon: pos_six
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_six
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- point_of_sale
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: POS Six
|
||||
- **Version**: 1.0
|
||||
- **Category**: Sales/Point Of Sale
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `pos_six`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-pos_six/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-pos_six/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Pos_six Module - pos_six
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-pos_six/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-pos_six/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for pos_six. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-pos_six/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-pos_six/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-pos_six/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-pos_six/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [point_of_sale](../../odoo-bringout-oca-ocb-point_of_sale)
|
||||
4
odoo-bringout-oca-ocb-pos_six/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-pos_six/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_six or install in UI.
|
||||
7
odoo-bringout-oca-ocb-pos_six/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-pos_six/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_six"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-pos_six"
|
||||
```
|
||||
14
odoo-bringout-oca-ocb-pos_six/doc/MODELS.md
Normal file
14
odoo-bringout-oca-ocb-pos_six/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in pos_six.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class pos_config
|
||||
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.
|
||||
6
odoo-bringout-oca-ocb-pos_six/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-pos_six/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: pos_six. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon pos_six
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-pos_six/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-pos_six/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-pos_six/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-pos_six/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
5
odoo-bringout-oca-ocb-pos_six/doc/TROUBLESHOOTING.md
Normal file
5
odoo-bringout-oca-ocb-pos_six/doc/TROUBLESHOOTING.md
Normal file
|
|
@ -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_six/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-pos_six/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_six
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-pos_six/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-pos_six/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
4
odoo-bringout-oca-ocb-pos_six/pos_six/__init__.py
Normal file
4
odoo-bringout-oca-ocb-pos_six/pos_six/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# coding: utf-8
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
25
odoo-bringout-oca-ocb-pos_six/pos_six/__manifest__.py
Normal file
25
odoo-bringout-oca-ocb-pos_six/pos_six/__manifest__.py
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
{
|
||||
'name': 'POS Six',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Point Of Sale',
|
||||
'sequence': 6,
|
||||
'summary': 'Integrate your POS with a Six payment terminal',
|
||||
'data': [
|
||||
'views/pos_payment_method_views.xml',
|
||||
],
|
||||
'depends': ['point_of_sale'],
|
||||
'installable': True,
|
||||
'license': 'LGPL-3',
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_six/static/lib/six_timapi/timapi.js',
|
||||
'pos_six/static/src/js/BalanceButton.js',
|
||||
'pos_six/static/src/js/Chrome.js',
|
||||
'pos_six/static/src/js/models.js',
|
||||
'pos_six/static/src/js/payment_six.js',
|
||||
'pos_six/static/src/xml/**/*',
|
||||
],
|
||||
}
|
||||
}
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/af.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/af.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/am.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/am.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ar.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ar.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "لا تملك الرصيد الكافي "
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "تهيئة نقطة البيع "
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "طرق الدفع في نقطة البيع "
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "جلسة نقطة البيع"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "إرسال الرصيد "
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "عنوان IP لجهاز الدفع بالبطاقة Six "
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "فشلت عملية الاستعلام عن الرصيد. "
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "لم تتم معالجة المعاملة بشكل صحيح "
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/az.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/az.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Nöqtəsi Konfiqurasiyası"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Satış Nöqtəsi Ödəniş Üsulları"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Nöqtəsi Sessiyası"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/be.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/be.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/bg.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/bg.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Petko Karamotchev, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Конфигурация на център за продажби"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Методи на плащане за точка на продажба (POS)"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Сесия на център за продажби"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/bs.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/bs.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo Neuspješno"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Načini plaćanja na prodajnom mjestu"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Pošalji saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six Terminal IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Operacija salda nije uspjela."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transakcija nije obrađena ispravno"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ca.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ca.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# marcescu, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "El balanç ha fallat"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuració del Punt de Venda"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Mètodes de pagament de punt de venda"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessió del Punt de Venda"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Envia el balanç"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Sis terminals IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "L'operació d'equilibri ha fallat."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "La transacció no s'ha processat correctament"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/cs.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/cs.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Vyrovnání selhalo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavení prodejního místa"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Platební podmíky v místě prodeje"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sezení Prodejního místa"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Odeslat vyrovnání"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Operace vyrovnání se nezdařila."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/da.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/da.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo Slog fejl"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS konfiguration"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Point of Sale betalingsmetoder"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS session"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Send saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "SIX Terminal IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Saldo operationen slog fejl."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transaktionen blev ikke korrekt behandlet"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/de.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/de.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo fehlgeschlagen"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassensystem-Konfiguration"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Zahlungsmethoden des Kassensystems"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassensitzung"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Saldo senden"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six-Terminal-IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Der Ausgleichsvorgang ist fehlgeschlagen."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transaktion wurde nicht korrekt bearbeitet"
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/es.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/es.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Error en el saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del TPV"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de pago en el punto de venta "
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión TPV"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Enviar saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP del Terminal Six"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Ocurrió un error en la operación de saldo."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "La transacción no se procesó correctamente"
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/es_MX.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Error en el saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del punto de venta"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de pago del punto de venta"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión del punto de venta"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Enviar saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Dirección IP de la terminal Six "
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Ocurrió un error en la operación de saldo."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "La transacción no se procesó correctamente"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/et.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/et.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Maidu Targama <m.targama@gmail.com>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Leaanika Randmets, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo ebaõnnestus"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa seadistused"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassa maksemeetodid"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassa Sessioon"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Saada saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six terminali IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Tasakaalustamisoperatsioon ebaõnnestus."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Tehingut ei töödeldud korrektselt"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/fa.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/fa.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "پیکربندی پایانه فروش"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "روش های پرداخت پایانه فروش"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "جلسه پایانه فروش"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP تریمنال Six"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/fi.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/fi.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldon tasaus epäonnistui"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapäätteen asetukset"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassan maksutavat"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassapäätteen istunto"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Lähetä saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six-terminaalin IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Saldo-operaatio epäonnistui."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Tapahtumaa ei käsitelty oikein"
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/fr.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/fr.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Échec du solde"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuration du point de vente"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Modes de paiement du point de vente"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Session du point de vente"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Envoyer le solde"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP du terminal Six"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "L'opération de solde a échoué."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "La transaction n'a pas été traitée correctement"
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/gu.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/gu.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/he.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/he.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Ofir Blum <ofir.blum@gmail.com>, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "מאזן נכשל"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "תצורת קופה"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "אמצעי תשלום קופה"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "משמרת קופה "
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "שלח יתרה"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "פעולת יצירת מאזן נכשלה"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "ההעברה לא עובדה כראי"
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hi.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hi.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hr.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hr.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# hrvoje sić <hrvoje.sic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Načini plaćanja na prodajnom mjestu"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hu.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hu.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Értékesítési pont beállítása"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Értékesítési Pont Értékesítési folyamat"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hy.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/hy.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/id.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/id.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# whenwesober, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo Gagal"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurasi Point of Sale"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metode Pembayaran Point of Sale POS"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesi Point of Sale"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Kirim Saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP Enam Terminal"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Operasi saldo gagal."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transaksi tidak diproses secara benar"
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/is.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/is.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/it.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/it.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo non riuscito"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurazione punto vendita"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metodi di pagamento punto vendita"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessione punto vendita"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Invia saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP terminale Six"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Operazione di saldo non riuscita."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "La transazione non è stata elaborata correttamente"
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ja.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ja.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "残高不足"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS設定"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS支払い方法"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POSセッション"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "残高送信"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six端末IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "残高オペレーションに失敗しました"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "取引が正常に行われませんでした"
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/km.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/km.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "ចំណុចនៃការកំណត់រចនាសម្ព័ន្ធលក់"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ចំណុចនៃវគ្គលក់"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
71
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ko.po
Normal file
71
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ko.po
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 조성현 (jaymz9634) <jaymz9634@gmail.com>, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "잔액 오류"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "점포판매시스템 환경 설정"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS 결제 수단"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "점포판매시스템 기간"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "잔액 보내기"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six 터미널 IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "거래 잔액 오류"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "트랜잭션이 바르게 처리되지 않았습니다"
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/lo.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/lo.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/lt.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/lt.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pardavimo taško konfigūracija"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Pardavimo taško mokėjimo būdai"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pardavimo taško sesija"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/lv.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/lv.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pārdošanas punkta konfigurācija"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Pārdošanas punkta maksājumu metodes"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pārdošanas punkta sesija"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six termināļa IP adrese"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Darījums netika korekti apstrādāts"
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ml.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ml.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "പോയിന്റ് ഓഫ് സെയിൽ കോൺഫിഗറേഷൻ"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "പോയിന്റ് ഓഫ് സെയിൽ സെഷൻ"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/mn.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/mn.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# Sanjaajamts Badamjunai <b.sanjaajamtsfc@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sanjaajamts Badamjunai <b.sanjaajamtsfc@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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Борлуулалтын цэгийн тохиргоо"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Төлбөрийн аргууд"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ПОС сэшн"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ms.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ms.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurasi Tempat Jualan"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kaedah Pembayaran Tempat Jualan"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/nb.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/nb.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapunkt"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Betalingsmetoder for Kassasystem"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kasseøkt"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Send balanse"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six Terminal IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transaksjonen kunne ikke gjennomføres"
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/nl.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/nl.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo mislukt"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa instellingen"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassa betaalmethodes"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasessie"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Verzend saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six Terminal IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "De saldobewerking is mislukt"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "De transactie is niet correct verwerkt"
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/no.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/no.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pl.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pl.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Bilans zawiódł"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfiguracja punktu sprzedaży"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metody płatności punktu sprzedaży"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesja punktu sprzedaży"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Wyślij bilans"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP terminala Six"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Operacja bilansu zawiodła."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transakcja nie została przetworzona poprawnie."
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pos_six.pot
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pos_six.pot
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pt.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pt.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Manuela Silva <mmsrs@sky.com>, 2024\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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de Venda"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de Pagamento do Ponto de Venda"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessão do Ponto de Venda"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pt_BR.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Rafael H L Moretti <rafael.moretti@gmail.com>, 2022
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Saldo falhou"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de Vendas"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Métodos de pagamento do ponto de venda"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessão do Ponto de Vendas"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Enviar saldo"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP do terminal Six"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "A operação de saldo falhou."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "A transação não foi processada corretamente"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ro.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ro.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Betty Keresztesi, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Betty Keresztesi, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Soldul eșuat"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurarea Punctului de Vânzare"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Metode plată Punct de Vânzare"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesiune Punct de vânzare"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Trimite sold"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP Terminal Six"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Operațiunea de încărcare sold a eșuat."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Tranzacția nu a fost procesată corect"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ru.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ru.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Нарушен баланс"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Конфигурация точки продаж"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Способы оплаты в торговых точках"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Смена"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Отправить баланс"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Шесть терминальных IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Операция балансировки неудачна."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Транзакция была обработана неправильно"
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sk.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sk.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurácia miesta predaja"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Relácia miesta predaja"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sl.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sl.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavitve POS-blagajne"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Seja POS"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sq.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sq.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sr.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sr.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Balance Failed"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Podešavanje POS terminala mesta prodaje"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Point of Sale Payment Methods"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesija prodajnog mesta"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Send Balance"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six Terminal IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "The balance operation failed."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transaction was not processed correctly"
|
||||
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sv.po
Normal file
70
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sv.po
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Balansen misslyckades"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassakonfigurering"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Kassa Betalningsmetoder"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasession"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Skicka balans"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six terminal-IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Balansoperationen misslyckades."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Transaktionen behandlades inte korrekt"
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sw.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/sw.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ta.po
Normal file
64
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/ta.po
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr ""
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/th.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/th.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "ยอดคงเหลือล้มเหลว"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "กำหนดค่าการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "วิธีการชำระเงินการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "เซสชั่นการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "ส่งยอดคงเหลือ"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six Terminal IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "การดำเนินการยอดคงเหลือล้มเหลว"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "ธุรกรรมไม่ได้รับการประมวลผลอย่างถูกต้อง"
|
||||
72
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/tr.po
Normal file
72
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/tr.po
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Halil, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Bakiye Başarısız Oldu"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Noktası Yapılandırması"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Satış Noktası Ödeme Yöntemleri"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Noktası Oturumu"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Bakiye Gönder"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six Terminali IP'si"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Bakiye işlemi başarısız oldu."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "İşlem doğru şekilde işlenmedi"
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/uk.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/uk.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Помилка балансу"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Налаштування точки продажу"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "Способи оплати точки продажу"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Сесія точки продажу"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Надіслати баланс"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six Terminal IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Балансова операція не вдалася."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Транзакція не оброблена коректно"
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/vi.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/vi.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "Số dư không thành công"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Cấu hình điểm bán lẻ"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.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_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Phiên POS"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "Gửi số dư"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "IP thiết bị đầu cuối SIX"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "Thao tác số dư không thành công. "
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "Giao dịch không được xử lý chính xác"
|
||||
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/zh_CN.po
Normal file
69
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "余额失败"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS配置"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS支付方式"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS会话"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "发送余额"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six 终端IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "余额平衡操作失败."
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "交易未正确处理"
|
||||
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/zh_TW.po
Normal file
68
odoo-bringout-oca-ocb-pos_six/pos_six/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_six
|
||||
#
|
||||
# Translators:
|
||||
# Tony Ng, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tony Ng, 2024\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Balance Failed"
|
||||
msgstr "結餘操作失敗"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS 銷售點配置"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_payment_method
|
||||
msgid "Point of Sale Payment Methods"
|
||||
msgstr "POS 銷售點付款方式"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model,name:pos_six.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS 銷售點操作時段"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/xml/BalanceButton.xml:0
|
||||
#, python-format
|
||||
msgid "Send Balance"
|
||||
msgstr "傳送結餘"
|
||||
|
||||
#. module: pos_six
|
||||
#: model:ir.model.fields,field_description:pos_six.field_pos_payment_method__six_terminal_ip
|
||||
msgid "Six Terminal IP"
|
||||
msgstr "Six 終端機 IP"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "The balance operation failed."
|
||||
msgstr "結餘操作失敗。"
|
||||
|
||||
#. module: pos_six
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_six/static/src/js/payment_six.js:0
|
||||
#, python-format
|
||||
msgid "Transaction was not processed correctly"
|
||||
msgstr "交易未正確處理"
|
||||
6
odoo-bringout-oca-ocb-pos_six/pos_six/models/__init__.py
Normal file
6
odoo-bringout-oca-ocb-pos_six/pos_six/models/__init__.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# coding: utf-8
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import pos_config
|
||||
from . import pos_payment_method
|
||||
from . import pos_session
|
||||
14
odoo-bringout-oca-ocb-pos_six/pos_six/models/pos_config.py
Normal file
14
odoo-bringout-oca-ocb-pos_six/pos_six/models/pos_config.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# coding: utf-8
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = 'pos.config'
|
||||
|
||||
def _force_http(self):
|
||||
enforce_https = self.env['ir.config_parameter'].sudo().get_param('point_of_sale.enforce_https')
|
||||
if not enforce_https and self.payment_method_ids.filtered(lambda pm: pm.use_payment_terminal == 'six'):
|
||||
return True
|
||||
return super(PosConfig, self)._force_http()
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# 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'
|
||||
|
||||
def _get_payment_terminal_selection(self):
|
||||
return super(PosPaymentMethod, self)._get_payment_terminal_selection() + [('six', 'SIX')]
|
||||
|
||||
six_terminal_ip = fields.Char('Six Terminal IP')
|
||||
13
odoo-bringout-oca-ocb-pos_six/pos_six/models/pos_session.py
Normal file
13
odoo-bringout-oca-ocb-pos_six/pos_six/models/pos_session.py
Normal file
|
|
@ -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('six_terminal_ip')
|
||||
return result
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -0,0 +1,21 @@
|
|||
odoo.define('pos_six.BalanceButton', function(require) {
|
||||
'use strict';
|
||||
|
||||
const PosComponent = require('point_of_sale.PosComponent');
|
||||
const Registries = require('point_of_sale.Registries');
|
||||
|
||||
class BalanceButton extends PosComponent {
|
||||
sendBalance() {
|
||||
this.env.pos.payment_methods.map(pm => {
|
||||
if (pm.use_payment_terminal === 'six') {
|
||||
pm.payment_terminal.send_balance();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
BalanceButton.template = 'BalanceButton';
|
||||
|
||||
Registries.Component.add(BalanceButton);
|
||||
|
||||
return BalanceButton;
|
||||
});
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
odoo.define('pos_six.chrome', function (require) {
|
||||
'use strict';
|
||||
|
||||
const Chrome = require('point_of_sale.Chrome');
|
||||
const Registries = require('point_of_sale.Registries');
|
||||
|
||||
const PosSixChrome = (Chrome) =>
|
||||
class extends Chrome {
|
||||
get balanceButtonIsShown() {
|
||||
return this.env.pos.payment_methods.some(pm => pm.use_payment_terminal === 'six');
|
||||
}
|
||||
};
|
||||
|
||||
Registries.Component.extend(Chrome, PosSixChrome);
|
||||
|
||||
return Chrome;
|
||||
});
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
odoo.define('pos_six.models', function (require) {
|
||||
|
||||
var models = require('point_of_sale.models');
|
||||
var PaymentSix = require('pos_six.payment');
|
||||
|
||||
models.register_payment_method('six', PaymentSix);
|
||||
});
|
||||
|
|
@ -0,0 +1,177 @@
|
|||
/* global timapi */
|
||||
odoo.define('pos_six.payment', function (require) {
|
||||
"use strict";
|
||||
|
||||
const { Gui } = require('point_of_sale.Gui');
|
||||
var core = require('web.core');
|
||||
var PaymentInterface = require('point_of_sale.PaymentInterface');
|
||||
const { escape } = require("@web/core/utils/strings");
|
||||
var _t = core._t;
|
||||
|
||||
window.onTimApiReady = function () {};
|
||||
window.onTimApiPublishLogRecord = function (record) {
|
||||
// Log only warning or errors
|
||||
if (record.matchesLevel(timapi.LogRecord.LogLevel.warning)) {
|
||||
timapi.log(String(record));
|
||||
}
|
||||
};
|
||||
|
||||
var PaymentSix = PaymentInterface.extend({
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Public
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
init: function () {
|
||||
this._super.apply(this, arguments);
|
||||
this.enable_reversals();
|
||||
|
||||
var terminal_ip = this.payment_method.six_terminal_ip;
|
||||
var instanced_payment_method = _.find(this.pos.payment_methods, function(payment_method) {
|
||||
return payment_method.use_payment_terminal === "six"
|
||||
&& payment_method.six_terminal_ip === terminal_ip
|
||||
&& payment_method.payment_terminal
|
||||
})
|
||||
if (instanced_payment_method !== undefined) {
|
||||
var payment_terminal = instanced_payment_method.payment_terminal;
|
||||
this.terminal = payment_terminal.terminal;
|
||||
this.terminalListener = payment_terminal.terminalListener;
|
||||
return;
|
||||
}
|
||||
|
||||
var settings = new timapi.TerminalSettings();
|
||||
settings.connectionMode = timapi.constants.ConnectionMode.onFixIp;
|
||||
settings.connectionIPString = this.payment_method.six_terminal_ip;
|
||||
settings.connectionIPPort = "80";
|
||||
settings.integratorId = "175d97a0-2a88-4413-b920-e90037b582ac";
|
||||
settings.dcc = false;
|
||||
|
||||
this.terminal = new timapi.Terminal(settings);
|
||||
this.terminal.setPosId(this.pos.pos_session.name);
|
||||
this.terminal.setUserId(this.pos.pos_session.user_id[0]);
|
||||
|
||||
this.terminalListener = new timapi.DefaultTerminalListener();
|
||||
this.terminalListener.transactionCompleted = this._onTransactionComplete.bind(this);
|
||||
this.terminalListener.balanceCompleted = this._onBalanceComplete.bind(this);
|
||||
this.terminal.addListener(this.terminalListener);
|
||||
|
||||
var recipients = [timapi.constants.Recipient.merchant, timapi.constants.Recipient.cardholder];
|
||||
var options = [];
|
||||
_.forEach(recipients, (recipient) => {
|
||||
var option = new timapi.PrintOption(
|
||||
recipient,
|
||||
timapi.constants.PrintFormat.normal,
|
||||
45,
|
||||
[timapi.constants.PrintFlag.suppressHeader, timapi.constants.PrintFlag.suppressEcrInfo]
|
||||
);
|
||||
options.push(option);
|
||||
});
|
||||
this.terminal.setPrintOptions(options);
|
||||
},
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
send_payment_cancel: function () {
|
||||
this._super.apply(this, arguments);
|
||||
this.terminal.cancel();
|
||||
return Promise.resolve();
|
||||
},
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
send_payment_request: function () {
|
||||
this._super.apply(this, arguments);
|
||||
this.pos.get_order().selected_paymentline.set_payment_status('waitingCard');
|
||||
return this._sendTransaction(timapi.constants.TransactionType.purchase);
|
||||
},
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
send_payment_reversal: function () {
|
||||
this._super.apply(this, arguments);
|
||||
this.pos.get_order().selected_paymentline.set_payment_status('reversing');
|
||||
return this._sendTransaction(timapi.constants.TransactionType.reversal);
|
||||
},
|
||||
|
||||
send_balance: function () {
|
||||
this.terminal.balanceAsync();
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Private
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
_onTransactionComplete: function (event, data) {
|
||||
timapi.DefaultTerminalListener.prototype.transactionCompleted(event, data);
|
||||
|
||||
if (event.exception) {
|
||||
if (event.exception.resultCode !== timapi.constants.ResultCode.apiCancelEcr) {
|
||||
Gui.showPopup('ErrorPopup', {
|
||||
title: _t('Transaction was not processed correctly'),
|
||||
body: event.exception.errorText,
|
||||
});
|
||||
}
|
||||
|
||||
this.transactionResolve();
|
||||
} else {
|
||||
if (data.printData){
|
||||
this._printReceipts(data.printData.receipts)
|
||||
}
|
||||
|
||||
// Store Transaction Data
|
||||
var transactionData = new timapi.TransactionData();
|
||||
transactionData.transSeq = data.transactionInformation.transSeq;
|
||||
this.terminal.setTransactionData(transactionData);
|
||||
|
||||
this.transactionResolve(true);
|
||||
}
|
||||
},
|
||||
|
||||
_onBalanceComplete: function (event, data) {
|
||||
if (event.exception) {
|
||||
Gui.showPopup('ErrorPopup',{
|
||||
'title': _t('Balance Failed'),
|
||||
'body': _t('The balance operation failed.'),
|
||||
});
|
||||
} else {
|
||||
this._printReceipts(data.printData.receipts);
|
||||
}
|
||||
},
|
||||
|
||||
_printReceipts: function (receipts) {
|
||||
_.forEach(receipts, (receipt) => {
|
||||
if (receipt.recipient === timapi.constants.Recipient.merchant && this.pos.env.proxy.printer) {
|
||||
this.pos.env.proxy.printer.print_receipt(
|
||||
"<div class='pos-receipt'><div class='pos-payment-terminal-receipt'>" +
|
||||
escape(receipt.value).replace(/\n/g, "<br />") +
|
||||
"</div></div>"
|
||||
);
|
||||
} else if (receipt.recipient === timapi.constants.Recipient.cardholder) {
|
||||
this.pos.get_order().selected_paymentline.set_receipt_info(receipt.value);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
_sendTransaction: function (transactionType) {
|
||||
var amount = new timapi.Amount(
|
||||
Math.round(this.pos.get_order().selected_paymentline.amount / this.pos.currency.rounding),
|
||||
timapi.constants.Currency[this.pos.currency.name],
|
||||
this.pos.currency.decimal_places
|
||||
);
|
||||
|
||||
return new Promise((resolve) => {
|
||||
this.transactionResolve = resolve;
|
||||
this.terminal.transactionAsync(transactionType, amount);
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
return PaymentSix;
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
|
||||
<t t-name="BalanceButton" owl="1">
|
||||
<div class="header-button balance-button" t-on-click="sendBalance">
|
||||
<span class="lock-button">
|
||||
Send Balance
|
||||
</span>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
|
||||
<t t-name="Chrome" t-inherit="point_of_sale.Chrome" t-inherit-mode="extension" owl="1">
|
||||
<xpath expr="//SyncNotification" position="after">
|
||||
<BalanceButton t-if="balanceButtonIsShown" />
|
||||
</xpath>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="pos_payment_method_view_form_inherit_pos_adyen" model="ir.ui.view">
|
||||
<field name="name">pos.payment.method.form.inherit.adyen</field>
|
||||
<field name="model">pos.payment.method</field>
|
||||
<field name="inherit_id" ref="point_of_sale.pos_payment_method_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='use_payment_terminal']" position="after">
|
||||
<field name="six_terminal_ip"
|
||||
attrs="{'invisible': [('use_payment_terminal', '!=', 'six')], 'required': [('use_payment_terminal', '=', 'six')]}"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
42
odoo-bringout-oca-ocb-pos_six/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-pos_six/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-pos_six"
|
||||
version = "16.0.0"
|
||||
description = "POS Six - Integrate your POS with a Six payment terminal"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-point_of_sale>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["pos_six"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue