mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-23 20:42:00 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
50
odoo-bringout-oca-ocb-pos_epson_printer_restaurant/README.md
Normal file
50
odoo-bringout-oca-ocb-pos_epson_printer_restaurant/README.md
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# pos_epson_printer_restaurant
|
||||
|
||||
|
||||
|
||||
Use Epson Printers as Order Printers in the Point of Sale without the IoT Box
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_epson_printer_restaurant
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- pos_epson_printer
|
||||
- pos_restaurant
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: pos_epson_printer_restaurant
|
||||
- **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_epson_printer_restaurant`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Pos_epson_printer_restaurant Module - pos_epson_printer_restaurant
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for pos_epson_printer_restaurant. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [pos_epson_printer](../../odoo-bringout-oca-ocb-pos_epson_printer)
|
||||
- [pos_restaurant](../../odoo-bringout-oca-ocb-pos_restaurant)
|
||||
|
|
@ -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_epson_printer_restaurant or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_epson_printer_restaurant"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-pos_epson_printer_restaurant"
|
||||
```
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in pos_epson_printer_restaurant.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class pos_session
|
||||
class restaurant_printer
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: pos_epson_printer_restaurant. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon pos_epson_printer_restaurant
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
|
|
@ -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_epson_printer_restaurant
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': 'pos_epson_printer_restaurant',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Point of Sale',
|
||||
'sequence': 6,
|
||||
'summary': 'Epson Printers as Order Printers',
|
||||
'description': """
|
||||
|
||||
Use Epson Printers as Order Printers in the Point of Sale without the IoT Box
|
||||
""",
|
||||
'depends': ['pos_epson_printer', 'pos_restaurant'],
|
||||
'data': [
|
||||
'views/pos_restaurant_views.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_epson_printer_restaurant/static/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Afrikaans (https://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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "عنوان IP لطابعة Epson "
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "عنوان IP محلي لطابعة إيصالات Epson "
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "جلسة نقطة البيع"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "نوع الطابعة "
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "طابعة مطعم"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "استخدام طابعة Epson "
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Nöqtəsi Sessiyası"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Igor Sheludko <igor.sheludko@gmail.com>, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "IP адрес на Epson принтер"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Local IP address of an Epson receipt printer."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Сесия на център за продажби"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Тип на принтера"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Принтер за ресторант"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-20 09:01+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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson Printer IP Address"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Local IP address of an Epson receipt printer."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Printer Type"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restaurant Printer"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Use an Epson printer"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson Printer IP Adreça"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Adreça IP local d'una impressora de recepció d'Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessió del Punt de Venda"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tipus d'impressora"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Impressora del restaurant"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Utilitza una impressora Epson"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Marta Wacławek, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Adresa IP tiskárny Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Místní IP adresa tiskárny Epson na tisk stvrzenek."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sezení Prodejního místa"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Typ tiskárny"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Tiskárna restaurace"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Použít Epson tiskárnu"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson Printer IP Adresse"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokal IP adresse på en Epson kvitering printer."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS session"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Printer type"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restaurant printer"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Brug en Epson printer"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "IP-Adresse des Epson-Druckers"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokale IP-Adresse des Epson-Belegdruckers."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassensitzung"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Druckertyp"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restaurant-Drucker"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Epson-Drucker verwenden"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Dirección IP de la impresora Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Dirección IP local de una impresora de recibos Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión TPV"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tipo de impresora"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Impresora de restaurante"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Use una impresora Epson"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Dirección IP de la impresora Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Dirección IP local de una impresora de recibos Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesión del punto de venta"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tipo de impresora"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Impresora de restaurante"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Use una impresora Epson"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Maidu Targama <m.targama@gmail.com>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson printeri IP aadress"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson kviitungiprinteri kohalik IP aadress."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassa Sessioon"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Printeri tüüp"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restorani Printer"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Kasutage Epson printerit"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "جلسه پایانه فروش"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "نوع چاپگر"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epsonin tulostimen IP-osoite"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epsonin kuittitulostimen paikallinen IP-osoite."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassapäätteen istunto"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tulostimen tyyppi"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Ravintolan tulostin"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Käytä Epson-tulostinta"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Adresse IP de l'imprimante Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Adresse IP locale d'une imprimante de reçus Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Session du point de vente"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Type d'imprimante"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Imprimante du restaurant"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Utiliser une imprimante Epson"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "כתובת IP מקומית של מדפסת קבלה של Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "משמרת קופה "
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "סוג מדפסת"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "מדפסת מסעדה"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "השתמש במדפסת Epson"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Smjena POS-a"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson számlanyomtató helyi IP címe"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Értékesítési Pont Értékesítési folyamat"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Nyomtató típusa"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Éttermi nyomtató"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Epson nyomtatót használ"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Alamat Ip Epson Printer"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "IP adress lokal untuk pencetak resi Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesi Point of Sale"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tipe Printer"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Gunakan printer Epson"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Icelandic (https://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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Indirizzo IP stampante EPSON"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Indirizzo IP locale della stampante ricevute Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessione punto vendita"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tipo stampante"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Stampante ristorante"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Utilizzare una stampante Epson"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "EpsonプリンタIPアドレス"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "EpsonレシートプリンタローカルIPアドレス"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POSセッション"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "プリンタタイプ"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "レストランプリンタ"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Epsonプリンタを使用"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ចំណុចនៃវគ្គលក់"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "ព្រីនធឺភោជនីយដ្ឋាន "
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson 프린터 IP 주소"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson 영수증 프린터의 로컬 IP 주소."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "점포판매시스템 기간"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "프린터 유형"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "식당 프린터"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Epson 프린터 사용"
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:15+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:13+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pardavimo taško sesija"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restorano spausdintuvas"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson printer IP adrese"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson čeku printera lokālā IP adrese"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Pārdošanas punkta sesija"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Printera tips"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restorāna printeris"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Izmantot Epson printeri"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "പോയിന്റ് ഓഫ് സെയിൽ സെഷൻ"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "ПОС сэшн"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Рестораны принтер"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokal IP-adresse for Epson kvitteringsskriver"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kasseøkt"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Skriver type"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restaurantskriver"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Bruk en Epson skriver"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson Printer IP adres"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokaal IP adres van een Epson ticket printer."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasessie"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Soort printer"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restaurantprinter"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Gebruik een Epson printer"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Adres IP drukarki Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokalny adres IP drukarki paragonów Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesja punktu sprzedaży"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Typ drukarki"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Drukarka zamówień restauracji"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Używaj drukarki Epson"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-20 09:01+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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessão do Ponto de Venda"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
# Layna Nascimento, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Layna Nascimento, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Endereço IP da impressora Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Endereço IP local de uma impressora de recibo Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sessão do Ponto de Vendas"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tipo de impressora"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Usar uma impressora Epson"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Betty Keresztesi, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Adresă IP imprimantă Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Adresa IP locală a unei imprimante Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesiune Punct de vânzare"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Tip Imprimantă"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Imprimantă Restaurant"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Utilizați o imprimantă Epson"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "IP-адрес принтера Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Локальный IP-адрес принтера чеков Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Смена"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Тип принтера"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Ресторанный принтеров"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Используйте принтер Epson"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Relácia miesta predaja"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 2022\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Seja POS"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Tiskalnik restavracije"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: コフスタジオ, 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson Printer IP Address"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokalna IP adresa Epsonovog štampača računa"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Sesija prodajnog mesta"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Vrsta štampača"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restoranski štampač"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Koristi Epson štampač"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Daniel Osser <danielosser@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Daniel Osser <danielosser@gmail.com>, 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson Printer IP-adress"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokal IP-adress till en Epson kvitto printer."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Kassasession"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Printer Typ"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restaurang Printer"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Använd en Epson printer"
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "ที่อยู่ IP ของเครื่องพิมพ์ Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "ที่อยู่ Local IP ในเครื่องพิมพ์ใบเสร็จของ Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "เซสชั่นการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "ประเภทเครื่องพิมพ์"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "เครื่องพิมพ์ของร้านอาหาร"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "ใช้เครื่องพิมพ์ Epson "
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Yedigen, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson Yazıcısı IP Adresi"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson makbuz yazıcısının yerel IP adresi."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Satış Noktası Oturumu"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Yazıcı Türü"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Restoran Yazıcısı"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Bir Epson yazıcı kullanın"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "IP-адреса принтера Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Локальна IP-адреса принтера чеків Epson."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Сесія точки продажу"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Тип принтера"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Ресторанний принтер"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Використовуйте принтер Epson"
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: 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_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Địa chỉ IP máy in Epson"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Địa chỉ IP nội bộ của máy in hóa đơn Epson "
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "Phiên POS"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "Loại máy in"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "Máy in nhà hàng"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "Sử dụng máy in Epson"
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Raymond Yu <cl_yu@hotmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson打印机IP地址"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson收据打印机的本地IP地址。"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS会话"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "打印机类型"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "餐厅打印机"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "使用Epson打印机"
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer_restaurant
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Epson Printer IP Address"
|
||||
msgstr "Epson打印機IP地址"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,help:pos_epson_printer_restaurant.field_restaurant_printer__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson 收據印表機的本地 IP 地址."
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_pos_session
|
||||
msgid "Point of Sale Session"
|
||||
msgstr "POS 操作時段"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer_restaurant.field_restaurant_printer__printer_type
|
||||
msgid "Printer Type"
|
||||
msgstr "印表機類型"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model,name:pos_epson_printer_restaurant.model_restaurant_printer
|
||||
msgid "Restaurant Printer"
|
||||
msgstr "餐廳印表機"
|
||||
|
||||
#. module: pos_epson_printer_restaurant
|
||||
#: model:ir.model.fields.selection,name:pos_epson_printer_restaurant.selection__restaurant_printer__printer_type__epson_epos
|
||||
msgid "Use an Epson printer"
|
||||
msgstr "使用 Epson 印表機"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import pos_restaurant
|
||||
from . import pos_session
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
class RestaurantPrinter(models.Model):
|
||||
|
||||
_inherit = 'restaurant.printer'
|
||||
|
||||
printer_type = fields.Selection(selection_add=[('epson_epos', 'Use an Epson printer')])
|
||||
epson_printer_ip = fields.Char(string='Epson Printer IP Address', help="Local IP address of an Epson receipt printer.")
|
||||
|
|
@ -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_restaurant_printer(self):
|
||||
result = super()._loader_params_restaurant_printer()
|
||||
result['search_params']['fields'].append('epson_printer_ip')
|
||||
return result
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
odoo.define('pos_epson_printer_restaurant.models', function (require) {
|
||||
"use strict";
|
||||
|
||||
var { PosGlobalState } = require('point_of_sale.models');
|
||||
var EpsonPrinter = require('pos_epson_printer.Printer');
|
||||
const Registries = require('point_of_sale.Registries');
|
||||
|
||||
// The override of create_printer needs to happen after its declaration in
|
||||
// pos_restaurant. We need to make sure that this code is executed after the
|
||||
// models file in pos_restaurant.
|
||||
require('pos_restaurant.models');
|
||||
|
||||
|
||||
const PosEpsonResPosGlobalState = (PosGlobalState) => class PosEpsonResPosGlobalState extends PosGlobalState {
|
||||
create_printer(config) {
|
||||
if (config.printer_type === "epson_epos") {
|
||||
return new EpsonPrinter(config.epson_printer_ip, this);
|
||||
} else {
|
||||
return super.create_printer(...arguments);
|
||||
}
|
||||
}
|
||||
}
|
||||
Registries.Model.extend(PosGlobalState, PosEpsonResPosGlobalState);
|
||||
});
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="view_restaurant_printer_iot_form" model="ir.ui.view">
|
||||
<field name="name">pos.restaurant.iot.config.form.view</field>
|
||||
<field name="model">restaurant.printer</field>
|
||||
<field name="inherit_id" ref="pos_restaurant.view_restaurant_printer_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="printer_type" position="after">
|
||||
<field name="epson_printer_ip" attrs="{'invisible': [('printer_type', '!=', 'epson_epos')]}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-pos_epson_printer_restaurant"
|
||||
version = "16.0.0"
|
||||
description = "pos_epson_printer_restaurant - Epson Printers as Order Printers"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-pos_epson_printer>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-pos_restaurant>=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_epson_printer_restaurant"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue