mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-23 00:02:02 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
49
odoo-bringout-oca-ocb-pos_epson_printer/README.md
Normal file
49
odoo-bringout-oca-ocb-pos_epson_printer/README.md
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# pos_epson_printer
|
||||
|
||||
|
||||
|
||||
Use Epson ePOS Printers without the IoT Box in the Point of Sale
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_epson_printer
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- point_of_sale
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: pos_epson_printer
|
||||
- **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`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-pos_epson_printer/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-pos_epson_printer/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Pos_epson_printer Module - pos_epson_printer
|
||||
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. 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,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [point_of_sale](../../odoo-bringout-oca-ocb-point_of_sale)
|
||||
4
odoo-bringout-oca-ocb-pos_epson_printer/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-pos_epson_printer/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon pos_epson_printer or install in UI.
|
||||
7
odoo-bringout-oca-ocb-pos_epson_printer/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-pos_epson_printer/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-pos_epson_printer"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-pos_epson_printer"
|
||||
```
|
||||
13
odoo-bringout-oca-ocb-pos_epson_printer/doc/MODELS.md
Normal file
13
odoo-bringout-oca-ocb-pos_epson_printer/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in pos_epson_printer.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class pos_config
|
||||
class res_config_settings
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-pos_epson_printer/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-pos_epson_printer/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: pos_epson_printer. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon pos_epson_printer
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-pos_epson_printer/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-pos_epson_printer/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-pos_epson_printer/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-pos_epson_printer/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-pos_epson_printer/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-pos_epson_printer/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon pos_epson_printer
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-pos_epson_printer/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-pos_epson_printer/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': 'pos_epson_printer',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Point of Sale',
|
||||
'sequence': 6,
|
||||
'summary': 'Epson ePOS Printers in PoS',
|
||||
'description': """
|
||||
|
||||
Use Epson ePOS Printers without the IoT Box in the Point of Sale
|
||||
""",
|
||||
'depends': ['point_of_sale'],
|
||||
'data': [
|
||||
'views/pos_config_views.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_epson_printer/static/src/js/**/*',
|
||||
'pos_epson_printer/static/src/xml/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,148 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "درج النقد "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr "تحقق من تهيئة الطابعة لإعدادات \"معرف الجهاز\". يجب أن يتم تعيينها كـ: "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "تعذر الاتصال بالطابعة "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "عنوان IP لطابعة Epson "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "عنوان IP لطابعة إيصالات Epson "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"إذا كنت في خادم آمن (HTTPS) تحقق من قبولك للشهادة يدوياً عن طريق الوصول إلى "
|
||||
"%s "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "عنوان IP محلي لطابعة إيصالات Epson "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "لم يتم رصد أي أوراق من قِبَل الطابعة "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "يرجى التحقق مما إذا كانت الطابعة بها ورق كافٍ وأنها مستعدة للطباعة. "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"يرجى التحقق مما إذا كانت الطابعة لا تزال متصلة. \n"
|
||||
"لا تسمح بعض المتصفحات باستدعاءات HTTP من المواقع الإلكترونية وإلى الأجهزة في الشبكة (لأسباب أمنية). إذا كان الأمر كذلك، ستحتاج إلى متابعة وثائق أودو عن 'الشهادة الموقعة ذاتياً لطابعات نقاط البيع الإلكترونية' و 'والاتصال الآمن (HTTPS)' لحل المشكلة "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "تهيئة نقطة البيع "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "عنوان IP لطابعة Epson في نقطة البيع "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "فشلت الطباعة "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"سوف يتم استخدام طابعة إيصالات Epson عوضاً عن طابعة الإيصالات المتصلة بجهاز "
|
||||
"IoT. "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "أظهرت الطابعة كود الخطأ التالي: "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "تم الوصول إلى الطابعة بنجاح، ولكن لم نتمكن من الطباعة. "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "للمزيد من التفاصيل حول سبب الخطأ، يرجى البحث عبر الإنترنت عن: "
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Kassa qutusu"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Printerə qoşulma uğursuz oldu"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Zəhmət olmasa printerin hələ də bağlı olub-olmadığını yoxlayın. \n"
|
||||
"Bəzi brauzerlər şəbəkədəki cihazlara veb saytlardan HTTP çağırışlarına icazə vermir (təhlükəsizlik səbəbindən). Bu halda, məsələni həll etmək üçün Odoo-nun 'ePOS printerlər üçün manual imzalanan sertifikat' və 'Təhlükəsiz əlaqə (HTTPS)' üçün sənədlərinə nəzər salmalısınız."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Nöqtəsi Konfiqurasiyası"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налады канфігурацыі"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Milena Georgieva, 2024
|
||||
# Petko Karamotchev, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Чекмедеже на каса"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Проверете конфигурацията на принтера за настройката „Идентификатор на "
|
||||
"устройство (Device ID)“. Тя трябва да бъде зададена на:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Неуспешно свързване с принтера"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Printer IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "IP адрес на Epson касов принтер "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Принтерът не засече хартия"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Моля, проверете дали принтерът има достатъчно хартия и е готов за печат."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Конфигурация на център за продажби"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP адресът на Epson POS принтера "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Печатът не успя."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Касовият принтер Epson ще бъде използван вместо принтера за бележки, свързан"
|
||||
" към IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Ladica za novac"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Veza s pisačem nije uspjela"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP epson printera"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson Receipt Printer IP Address"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "No paper was detected by the printer"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "Please check if the printer has enough paper and is ready to print."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Pos Epson Printer Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Printing failed"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "The following error code was given by the printer:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "The printer was successfully reached, but it wasn't able to print."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "To find more details on the error reason, please search online for:"
|
||||
|
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# jabelchi, 2022
|
||||
# marcescu, 2022
|
||||
# Óscar Fonseca <tecnico@extreme-micro.com>, 2022
|
||||
# Ivan Espinola, 2022
|
||||
# martioodo hola, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: martioodo hola, 2023\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Calaix"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Comprova la configuració de la impressora en la 'Configuració ID del "
|
||||
"dispositiu'. Hauria d'estar configurat com a:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustos de configuració"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Ha fallat la connexió a la impressora"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Impressora Epson IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Adreça IP de la impressora de rebuts Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Si sou en un servidor segur (HTTPS) assegureu-vos que heu acceptat "
|
||||
"manualment el certificat accedint %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "La impressora no ha detectat paper"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Comproveu si la impressora té prou paper i està preparada per imprimir."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Comproveu si la impressora encara està connectada. \n"
|
||||
"Alguns navegadors no permeten trucades HTTP des de llocs web a dispositius de la xarxa (per raons de seguretat). Si és el cas, haureu de seguir la documentació de l'Odoo per a 'Certificat d'EPOS signats soles' i 'Connexió segura (HTTPS)' per a resoldre el problema"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuració del Punt de Venda"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Pos Epson Printer Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Ha fallat la impressió"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"La impressora de recepció d'Epson s'utilitzarà en lloc de la impressora de "
|
||||
"recepció connectada a la caixa IoT."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "La impressora ha proporcionat el següent codi d'error:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
"La connexió a la impressora s'ha establit amb èxit, però no ha conseguit "
|
||||
"imprimir."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "Per a trobar més detalls sobre el motiu d'error, cerqueu en línia:"
|
||||
|
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký, 2023
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2023\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Pokladní zásuvka"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Zkontrolujte v nastavení tiskárny nastavení 'ID zařízení'. Mělo by být "
|
||||
"nastaveno: "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Připojení k tiskárně selhalo"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP tiskárny Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "IP adresa tiskárny Epson na tisk stvrzenek"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Pokud jste na zabezpečeném serveru (HTTPS), ujistěte se prosím, že jste "
|
||||
"certifikát přijali přístupem %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Tiskárnou nebyl detekován žádný papír"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Zkontrolujte prosím, zda má tiskárna dostatek papíru a je připravena k "
|
||||
"tisku."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Zkontrolujte prosím, že je tiskárna stále připojena.\n"
|
||||
"Některé prohlížeče nepovolují volání HTTP z webových stránek do zařízení v síti (z bezpečnostních důvodů). V takovém případě budete muset vyřešit problém podle dokumentace Odoo 'Certifikát s vlastním podpisem pro tiskárny ePOS' a 'Zabezpečené připojení (HTTPS)'."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavení prodejního místa"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP tiskárny Epson prodejního místa"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Tisk se nezdařil"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Místo tiskárny účtenek připojené k IoT Boxu bude použita tiskárna účtenek "
|
||||
"Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Tiskárna vydala následující kód chyby:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Tiskárna byla úspěšně oslovena, ale nemohla tisknout."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "Chcete-li zjistit více podrobností o důvodu chyby, hledejte online:"
|
||||
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Åbn kasseapparatet"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Kontroller printerens konfiguration for 'Enheds-ID' indstillingen. Den skal "
|
||||
"være indstillet til:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurer opsætning"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Forbindelse til printer slog fejl"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Printer IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson Kvittering Printer IP Address"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Der blev ikke registreret papir i printeren"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Venligst kontrollér at printeren har nok papir og er klar til at printe."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS konfiguration"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Pos Epson Printer Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Print fejlede"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Epson kvittering printer vil blive brugt i stedet for kvittering printeren "
|
||||
"forbundet til IoT boksen."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Følgende fejlkode blev givet af printeren:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Printeren blev nået, men den kunne ikke udskrive."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"For at finde flere detaljer om fejlårsagen, søg venligst online efter:"
|
||||
|
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Kassenschublade"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Überprüfen Sie in der Druckerkonfiguration die Einstellung „Geräte-ID“. Sie "
|
||||
"sollte eingestellt sein auf:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurationseinstellungen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Verbindung zum Drucker fehlgeschlagen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson-Drucker-IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "IP-Adresse des Epson-Bondruckers"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Wenn Sie sich auf einem sicheren Server (HTTPS) befinden, stellen Sie bitte "
|
||||
"sicher, dass Sie das Zertifikat manuell akzeptiert haben, indem Sie %s "
|
||||
"aufrufen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokale IP-Adresse des Epson-Bondruckers."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Es wurde kein Papier vom Drucker erkannt"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "Bitte prüfen Sie den Papierstand und die Bereitschaft des Druckers."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Bitte prüfen Sie, ob der Drucker noch angeschlossen ist. \n"
|
||||
"Einige Browser erlauben keine HTTP-Aufrufe von Websites zu Geräten im Netzwerk (aus Sicherheitsgründen). Wenn dies der Fall ist, müssen Sie die Odoo-Dokumentation für „Selbstsigniertes Zertifikat für ePOS-Drucker“ und „Sichere Verbindung (HTTPS)“ befolgen, um das Problem zu lösen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassensystem-Konfiguration"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Kassensystem Epson-Drucker-IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Drucken fehlgeschlagen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Der Epson-Bondrucker wird anstelle des an die IoT-Box angeschlossenen "
|
||||
"Bondruckers verwendet."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Der folgende Fehlercode wurde vom Drucker ausgegeben:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Der Drucker wurde erfolgreich erreicht, aber er konnte nicht drucken."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Um weitere Einzelheiten über die Fehlerursache zu erfahren, suchen Sie bitte"
|
||||
" online nach:"
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2025\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Cajón portamonedas"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Verifique en la configuración de la impresora el ajuste de \"ID del "
|
||||
"dispositivo\", debería estar configurado como:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Fallo en la conexión a la impresora"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Dirección IP de la impresora Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Dirección IP de la impresora de recibos Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Si está en un servidor seguro (HTTPS) asegúrese de aceptar el certificado "
|
||||
"manualmente entrando a %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "La impresora no detectó papel"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Asegúrese de que la impresora tiene papel suficiente y que está lista para "
|
||||
"imprimir."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Compruebe que la impresora siga conectada. \n"
|
||||
"Algunos navegadores no permiten solicitudes HTTP desde sitios web a dispositivos en la red (por motivos de seguridad). Si ese es el caso, consulte la documentación de Odoo para “Certificado autofirmado para impresoras ePOS” y “Conexión segura (HTTPS)” para solucionar el problema."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del TPV"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP de la impresora Epson del TPV"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "La impresión falló."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Se utilizará la impresora de recibos Epson en lugar de la impresora de "
|
||||
"recibos conectada a la caja IoT."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "La impresora mostró el siguiente código de error:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Se ha llegado a la impresora, pero no ha podido imprimir."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Para conocer más detalles respecto al motivo del error, busque en línea:"
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2023
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2024\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Caja"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Verifique en la configuración de la impresora el ajuste de \"ID del "
|
||||
"dispositivo\", debería estar configurado como:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Falló la conexión a la impresora"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Dirección IP de la impresora Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Dirección IP de la impresora de recibos Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Si está en un servidor seguro (HTTPS) asegúrese de aceptar el certificado "
|
||||
"manualmente entrando a %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "La impresora no detectó papel"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Asegúrese de que la impresora tenga suficiente papel y esté lista para "
|
||||
"imprimir."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Compruebe que la impresora siga conectada. \n"
|
||||
"Algunos navegadores no permiten solicitudes HTTP desde sitios web a dispositivos en la red (por motivos de seguridad). Si ese es el caso, consulte la documentación de Odoo para \"Certificado autofirmado para impresoras ePOS\" y \"Conexión segura (HTTPS)\" para solucionar el problema."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuración del PdV"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP de la impresora Epson del PdV"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "La impresión falló"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Se utilizará la impresora de recibos Epson en lugar de la impresora de "
|
||||
"recibos conectada a la caja IoT."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "La impresora mostró el siguiente código de error:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
"La conexión a la impresora se logró con éxito, pero no se pudo realizar la "
|
||||
"impresión."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Para conocer más detalles respecto al motivo del error, busque en línea:"
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Wanradt Koell <wanradt@gmail.com>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Maidu Targama <m.targama@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
# JanaAvalah, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Sularahasahtel"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Seadistused"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Printeriga ühendamine ebaõnnestus"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson printeri IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epsoni tšekiprinteri IP aadress"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Kui kasutate turvalist serverit (HTTPS), siis veenduge, et olete "
|
||||
"sertifikaadi käsitsi heaks kiitnud, avades %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson kviitungiprinteri kohalik IP aadress."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Palun kontrollige, kas printeris on piisavalt paberit ja kas printer on "
|
||||
"trükkimiseks valmis."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa seadistused"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Kassa Epsoni printeri IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Printimine ebaõnnestus"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Epsoni kviitungiprinterit kasutatakse IoT Boxiga ühendatud kviitungiprinteri"
|
||||
" asemel."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "صندوق پول"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تنظیمات پیکربندی"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "اتصال به چاپگر انجام نشد"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP پرینتر Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "پیکربندی پایانه فروش"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "چاپ شکست خورد"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Kassalipas"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Tarkista tulostimen kokoonpanosta 'Device ID' -asetus. Sen pitäisi olla "
|
||||
"asetettu seuraavaan arvoon: "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Yhteys tulostimeen epäonnistui"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Tulostin IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson kuittitulostimen IP-osoite"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Jos olet suojatulla palvelimella (HTTPS), varmista, että olet hyväksynyt "
|
||||
"varmenteen manuaalisesti käyttämällä %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epsonin kuittitulostimen paikallinen IP-osoite."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Tulostin ei havainnut paperia"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Tarkista, että tulostimessa on tarpeeksi paperia ja että se on valmis "
|
||||
"tulostamaan."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Tarkista, onko tulostin edelleen kytketty.\n"
|
||||
"Jotkin selaimet eivät salli HTTP-kutsuja verkkosivustoilta verkon laitteisiin (turvallisuussyistä). Jos näin on, sinun on noudatettava Odoon dokumentaatiota 'Self-signed certificate for ePOS printers' ja 'Secure connection (HTTPS)' ongelman ratkaisemiseksi"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapäätteen asetukset"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Kassan Epson-tulostimen IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Tulostus epäonnistui"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Epsonin kuittitulostinta käytetään IoT Boxiin liitetyn kuittitulostimen "
|
||||
"sijasta."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Tulostin antoi seuraavan virhekoodin:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
"Tulostin tavoitettiin onnistuneesti, mutta se ei pystynyt tulostamaan."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "Jos haluat lisätietoja virheen syystä, etsi verkossa osoitteesta:"
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Tiroir-caisse"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Vérifiez le paramètre 'ID Appareil' dans la configuration de l'imprimante. "
|
||||
"Il doit être défini sur : "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramètres de configuration"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Échec de la connexion à l'imprimante"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP de l'imprimante Epson "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Adresse IP de l'imprimante de reçus Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Si vous êtes sur un serveur sécurisé (HTTPS), veuillez vous assurer "
|
||||
"d'accepter manuellement le certificat en accédant à %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "L'imprimante n'a pas détecté de papier"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Veuillez vérifier si l'imprimante a assez de papier et est prête à imprimer."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Veuillez vérifier si l'imprimante est toujours connectée.\n"
|
||||
"Certains navigateurs n'autorisent pas les appels HTTP depuis des sites web vers des appareils du réseau (pour des raisons de sécurité). Si c'est le cas, vous devrez suivre la documentation d'Odoo pour 'Certificat auto-signé pour les imprimantes ePOS' et 'Connexion sécurisée (HTTPS)' pour résoudre le problème"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuration du point de vente"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP de l'imprimante Espon du PdV"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Impression échouée "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"L'imprimante de reçus Epson sera utilisée à la place de l'imprimante de "
|
||||
"reçus connectée à l'IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "L'imprimante a affiché le code d'erreur suivant :"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "L'imprimante a été jointe avec succès, mais elle n'a pas pu imprimer."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Pour trouver plus de détails sur la raison de l'erreur, veuillez rechercher "
|
||||
"en ligne :"
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# שהאב חוסיין <shhab89@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "מגירת מזומנים"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדר הגדרות"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "החיבור למדפסת נכשל"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP של מדפסת Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "כתובת IP של מדפסת קבלה של Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "כתובת IP מקומית של מדפסת קבלה של Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "תצורת קופה"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "כשלון בהדפסה"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr "מדפסת הקבלה של Epson תשמש במקום את מדפסת הקבלה המחוברת לתיבת IoT."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "कॉन्फ़िगरेशन सेटिंग"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Hrvoje Sić <hrvoje.sic@gmail.com>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Ladica za novac"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Veza s pisačem nije uspjela"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP epson printera"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Postavke prodajnog mjesta"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Készpénz fiók"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson számlanyomtató IP cím"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson számlanyomtató helyi IP címe"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Értékesítési pont beállítása"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Laci Kas"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Periksa konfigurasi printer untuk pengaturan 'Device ID'. Pengaturan "
|
||||
"harusnya disetel ke:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Pengaturan Konfigurasi"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Koneksi ke printer gagal"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Ip Epson Printer"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "ALamat IP Epson Receipt Printer "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Jika Anda berada pada server aman (HTTPS) mohon pastikan Anda secara manual "
|
||||
"menerima sertifikat dengan mengakses %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "IP adress lokal untuk pencetak resi Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Tidak ada kertas yang dideteksi printer"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Mohon periksa bila printer memiliki kertas yang cukup dan siap untuk "
|
||||
"mencetak."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Mohon periksa apakah printer masih terhubung.\n"
|
||||
"Beberapa browser tidak mengizinkan HTTP call dari website ke perangkat di network (untuk alasan keamanan). Apabila ini kasusnya, Anda harus mengikuti dokumentasi Odoo untuk 'Self-signed certificate for ePOS printers' dan 'Secure connection (HTTPS)' untuk menyelesaikan isu tersebut"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurasi Point of Sale"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP Epson Printer POS"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Pencetakan gagal"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Epson receipt printer akan digunakan alih-alih receipt printer yang "
|
||||
"terhubung ke IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Kode error berikut diberikan oleh printer:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Printer sukses terhubung, tapi tidak dapat mencetak."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Untuk mendapatkan lebih banyak detail mengenai alasan error, mohon cari "
|
||||
"online untuk:"
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Stillingarvalkostir"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Cassetto contanti"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Controlla le impostazioni della stampante per il parametro \"ID "
|
||||
"dispositivo\". Deve essere configurato come segue:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Impostazioni di configurazione"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Connessione alla stampante non riuscita"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP stampante Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Indirizzo IP stampante ricevute Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Se sei su un server sicuro (HTTPS) assicurati di aver accettato manualmente "
|
||||
"il certificato accedendo a %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Indirizzo IP locale della stampante ricevute Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "La stampante non ha rilevato alcun tipo di carta"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "Controlla se la stampante ha abbastanza carta ed è pronta a stampare."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Verifica se la stampante è ancora connessa. \n"
|
||||
"Alcuni browser non permettono le chiamate HTTP da siti web verso dispositivi nella rete (per ragioni di sicurezza). Se questo è il caso, dovrai seguire la documentazione Odoo relativa a \"Certificato autofirmato per stampanti ePOS\" e \"Connessione sicura (HTTPS)\" per risolvere il problema"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurazione punto vendita"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP stampante EPSON POS"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Stampa non riuscita"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Al posto della stampante collegata al box IoT viene usata la stampante "
|
||||
"ricevute Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Il seguente codice di errore è stato restituto dalla stampante:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
"La stampante è stata raggiunta con successo ma non è stato possibile "
|
||||
"stampare."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "Per avere maggiori dettagli sulla ragione dell'errore, cerca online:"
|
||||
|
|
@ -0,0 +1,145 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "現金箱"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr "プリンタ設定の'デバイスID'設定を確認して下さい。以下に設定されているはずです:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "プリンターへの接続に失敗しました"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "EpsonプリンタIP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "EpsonレシートプリンタIPアドレス"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr "セキュアサーバー(HTTPS)を使用している場合は、%sにアクセスして証明書を手動で受け入れたかどうか確認して下さい。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "EpsonレシートプリンタローカルIPアドレス"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "プリンタに紙がありません"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "プリンタに十分な用紙があり、印刷できる状態になっているか確認して下さい。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"プリンタが接続されているか確認して下さい。\n"
|
||||
"ブラウザによっては、Webサイトからネットワーク内のデバイスへのHTTPコールを許可しないものがあります(セキュリティ上の理由)。この場合、Odooの'ePOSプリンター用の自己署名証明書'と'安全な接続(HTTPS)'のドキュメントに従って問題を解決する必要があります。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS設定"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "POS EpsonプリンタIP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "プリントに失敗しました"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr "IoT Boxに接続されているレシートプリンタの代わりに、Epsonのレシートプリンタが使用されます。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "プリンタから以下のエラーコードが表示されました。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "プリンタへの接続は成功しましたが、印刷できませんでした。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "エラーの詳細については、オンラインで検索して下さい:"
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "កំណត់រចនាសម្ព័ន្ធ"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "ចំណុចនៃការកំណត់រចនាសម្ព័ន្ធលក់"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,145 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "금전등록기"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr "프린터 환경설정에서 '장치 아이디' 설정을 확인하세요. 다음과 같이 설정되어야 합니다:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "프린터 연결에 실패함"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "엡손 프린터 IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson 영수증 프린터 IP 주소"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr "보안 서버 (HTTPS)를 사용하는 경우, %s에서 수동으로 인증서를 수락했는지 확인하시기 바랍니다."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson 영수증 프린터의 로컬 IP 주소."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "프린터에 용지가 없습니다."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "프린터에 용지가 충분히 있으며 인쇄 준비가 완료되었는지 확인하십시오."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"프린터 연결을 확인하십시오.\n"
|
||||
"일부 브라우저는 웹사이트에서 네트워크 장치로의 HTTP 호출을 허용하지 않습니다 (보안 상의 이유). 이러한 경우에는 해당 문제 해결을 위해 'ePOS 프린터용 자체 인증서' 및 '보안 연결 (HTTP)'에 대한 Odoo의 문서를 참고하여 실행하십시오."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "점포판매시스템 환경 설정"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "POS Epson 프린터 IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "인쇄 실패"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr "IoT Box에 연결된 영수증 프린터 대신 Epson 영수증 프린터가 사용됩니다."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "프린터 오류 번호는 다음과 같습니다."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "프린터 연결에 성공하였으나 인쇄를 할 수 없습니다."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "오류 사유에 대한 자세한 내용을 확인하려면 온라인에서 다음 내용을 검색하십시오:"
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
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
|
||||
#. openerp-web
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "An error happened while sending data to the printer. Error code: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. openerp-web
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. openerp-web
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Epson ePOS Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. openerp-web
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected, if the configured IP address"
|
||||
" is correct and if your printer supports the ePOS protocol."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. openerp-web
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer is still connected. Error code: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: sackda chanthasombath, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ການຕັ້ງຄ່າ"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Pinigų stalčius"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigūracijos nustatymai"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pardavimo taško konfigūracija"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Naudas lāde"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurācijas uzstādījumi"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Savienojums ar printeri neizdevās"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson printera IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson čeku printera IP adrese"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson čeku printera lokālā IP adrese"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Printerī nav papīra"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Lūdzu, pārbaudiet vai printerī ir pietiekami papīra un tas ir gatavs "
|
||||
"printēšanai."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Pārdošanas punkta konfigurācija"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "POS Epson printera IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Drukāšana neizdevās"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Printeris izdeva sekojošu kļūdu:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Ar printeri veiksmīgi sazinājāss, bet tas nevarēja izprintēt."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "കാഷ്ഡ്രോവർ"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്സ്"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "എപ്സൺ പ്രിന്റർ ഐ.പി"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "പോയിന്റ് ഓഫ് സെയിൽ കോൺഫിഗറേഷൻ"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sanjaajamts Badamjunai <b.sanjaajamtsfc@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2025\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Мөнгөний хайрцаг"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Тохиргооны тохируулга"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Хэвлэгчтэй холбогдож чадсангүй"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Борлуулалтын цэгийн тохиргоо"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Хэвлэлт амжилтгүй"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Tetapan Konfigurasi"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurasi Tempat Jualan"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Kassaskuff"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Tilkobling til skriveren feilet"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Skriver IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson kvitteringsskriver IP-adresse"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokal IP-adresse for Epson kvitteringsskriver"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassapunkt"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Epson kvitteringsskriveren vil bruke istedenfor kvitteringsskriveren som er "
|
||||
"tilkoblet IOT-boksen."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Geldlade"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Controleer in de printerconfiguratie de instelling 'ID Apparaat'. Deze moet "
|
||||
"zijn ingesteld op:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Verbinding met de printer mislukt"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Printer IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson ticketprinter IP adres"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Als je je op een beveiligde server (HTTPS) bevindt, zorg er dan voor dat je "
|
||||
"het certificaat handmatig hebt geaccepteerd door toegang te krijgen tot %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokaal IP adres van een Epson ticketprinter."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "De printer heeft geen papier gedetecteerd"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Controleer of de printer voldoende papier heeft en klaar is om af te "
|
||||
"drukken."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Controleer of de printer nog is aangesloten.\n"
|
||||
"Sommige browsers staan geen HTTP-oproepen van websites naar apparaten in het netwerk toe (om veiligheidsredenen). Als dit het geval is, moet je de Odoo-documentatie voor 'Zelfondertekend certificaat voor ePOS-printers' en 'Beveiligde verbinding (HTTPS)' volgen om het probleem op te lossen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassa instellingen"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Kassa Epson Printer Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Afdrukken mislukt"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"De Epson ticketprinter wordt gebruikt in plaats van de ticketprinter "
|
||||
"gekoppeld aan de IoT box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "De printer gaf de volgende foutcode:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "De printer werd met succes bereikt, maar kon niet afdrukken."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Voor meer details over de reden van de fout kan je online zoeken naar:"
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Kasa"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Sprawdź konfigurację drukarki dla ustawienia 'Device ID'. Powinno zostać "
|
||||
"ustawione na: "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Połączenie z drukarką nie powiodło się"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP drukarki Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Adres IP drukarki paragonów Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Jeśli jesteś na bezpiecznym serwerze (HTTPS) upewnij się, że ręcznie "
|
||||
"zaakceptowałeś certyfikat wchodząc na stronę%s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Lokalny adres IP drukarki paragonów Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Brak papieru w drukarce"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Proszę sprawdź czy drukarka ma wystarczająco dużo papieru i jest gotowa do "
|
||||
"druku"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Sprawdź, czy drukarka jest nadal podłączona. \n"
|
||||
"Niektóre przeglądarki nie pozwalają na połączenia HTTP ze stron internetowych do urządzeń w sieci (ze względów bezpieczeństwa). W takim przypadku, aby rozwiązać problem, należy postępować zgodnie z dokumentacją Odoo dla \"Samopodpisanego certyfikatu dla drukarek ePOS\" i \"Bezpiecznego połączenia (HTTPS)"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfiguracja punktu sprzedaży"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP drukarki Pos Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Drukowanie nie powiodło się"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Drukarka paragonów Epson będzie używana zamiast drukarki paragonów "
|
||||
"podłączonej do IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Drukarka zwróciła następujący błąd:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
"Drukarka została pomyślnie osiągnięta, ale nie była w stanie drukować."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Aby znaleźć więcej szczegółów na temat przyczyny błędu, należy poszukać w "
|
||||
"Internecie:"
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,143 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Manuela Silva <mmsrs@sky.com>, 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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Gaveta de Dinheiro"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de Venda"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,153 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
# Layna Nascimento, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Caixa Registradora"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Procure 'Device ID' nas configurações da impressora. Deve estar definido "
|
||||
"como:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "A conexão à impressora falhou"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP da impressora Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Endereço IP da impressora de recibo Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Caso esteja em um servidor seguro (HTTPS), certifique-se de aceitar "
|
||||
"manualmente o certificado acessando %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Nenhum papel detectado pela impressora"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Verifique se a impressora tem papel suficiente e se está pronta para "
|
||||
"impressão."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Verifique se a impressora ainda está conectada. \n"
|
||||
"Alguns navegadores não permitem chamadas HTTP de sites para dispositivos na rede (por motivos de segurança). Se esse for o caso, você precisará seguir a documentação do Odoo para \"Certificado autoassinado para impressoras ePOS\" e \"Conexão segura (HTTPS)\" para resolver o problema"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configuração do Ponto de Vendas"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP da impressora Epson do PDV"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Falha na impressão"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"A impressora de recibo Epson será utilizada em vez da impressora de recibo "
|
||||
"conectada à IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "O seguinte código de erro foi fornecido pela impressora:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "A impressora foi alcançada com sucesso, mas não pôde imprimir."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "Para saber mais detalhes do motivo do erro, pesquise online:"
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Betty Keresztesi, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Sertar de bani"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Verificați configurația imprimantei pentru setarea \"ID dispozitiv\". "
|
||||
"Aceasta ar trebui să fie setată la: "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Setări de configurare"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Conectarea la imprimantă eșuat"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP Printer Eprson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Adresă IP Factură Imprimantă Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Adresa IP locală a unei imprimante Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Imprimanta nu a detectat hârtie"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Vă rugăm să verificați dacă imprimanta are suficientă hârtie și este "
|
||||
"pregătită pentru imprimare."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Verificați dacă imprimanta este încă conectată. \n"
|
||||
"Unele browsere nu permit apeluri HTTP de la site-uri la dispozitivele din rețea (din motive de securitate). În acest caz, va trebui să urmați documentația Odoo pentru 'Certificat auto-semnat pentru imprimante ePOS' și 'Conexiune securizată (HTTPS)' pentru a rezolva problema"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Configurarea Punctului de Vânzare"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Pos Imprimantă Epson Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Imprimare eșuată"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Imprimanta de bonuri Epson va fi utilizată în locul imprimantei de bonuri "
|
||||
"conectată la IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Imprimanta a afișat următorul cod de eroare:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Imprimanta a fost accesată cu succes, dar nu a putut imprima."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Pentru a găsi mai multe detalii cu privire la motivul erorii, vă rugăm să "
|
||||
"căutați online:"
|
||||
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Денежный ящик"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Проверьте в конфигурации принтера параметр \"Идентификатор устройства\". Он "
|
||||
"должен быть установлен на:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Не удалось подключиться к принтеру"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Принтер Epson IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "IP-адрес принтера квитанций Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Локальный IP-адрес принтера чеков Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Принтер не обнаружил бумагу"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "Убедитесь, что в принтере достаточно бумаги и он готов к печати."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Конфигурация точки продаж"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Принтер Epson Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Печать не удалась"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Принтер чеков Epson будет использоваться вместо принтера чеков, "
|
||||
"подключенного к IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Принтер выдал следующий код ошибки:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Принтер был успешно подключен, но не смог напечатать."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Чтобы получить более подробную информацию о причине ошибки, выполните поиск "
|
||||
"в Интернете:"
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tomáš Píšek, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tomáš Píšek, 2025\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Pokladňa "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Pripojenie k tlačiarni zlyhalo"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Konfigurácia miesta predaja"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Katja Deržič, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Katja Deržič, 2024\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Blagajniški predal"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Uredi nastavitve"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Tiskalnik ni zaznal papirja"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Preverite, ali ima tiskalnik dovolj papirja in je pripravljen za tiskanje."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Nastavitve POS-blagajne"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Tiskanje ni bilo uspešno"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Cashdrawer"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Connection to the printer failed"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Printer IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "IP adresa Epsonovog štampača računa"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "No paper was detected by the printer"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "Please check if the printer has enough paper and is ready to print."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Podešavanje POS terminala mesta prodaje"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Pos Epson Printer Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Printing failed"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "The following error code was given by the printer:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "The printer was successfully reached, but it wasn't able to print."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "To find more details on the error reason, please search online for:"
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2024
|
||||
# Daniel Osser <danielosser@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Kassalåda"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Kontrollera skrivarens inställningar för 'Device ID'. Den bör vara ställd "
|
||||
"till:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Anslutning till printern misslyckades"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Printer IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson Kvitto Printer IP Address"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Om du använder en säker anslutning (HTTPS) vänligen acceptera certifikatet "
|
||||
"manuellt genom att öppna %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Papper upptäckes inte av skrivaren"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Vänligen kontrollera att printern har tillräckligt med papper och är redo "
|
||||
"att skriva ut."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Kontrollera om skrivaren fortfarande är ansluten.\n"
|
||||
"Vissa webbläsare tillåter inte HTTP-anrop från webbplatser till enheter i nätverket (av säkerhetsskäl). Om så är fallet måste du följa Odoo's dokumentation för 'Självsignerat certifikat för ePOS-skrivare' och 'Säker anslutning (HTTPS)' för att lösa problemet"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Kassakonfigurering"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Kassa Epsonskrivare IP-adress"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Utskrift misslyckades"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Epson kvitto skrivare kommer att användas i stället för den som är ansluten "
|
||||
"till IoT lådan."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Felkod från skrivare:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Kommunikation med skrivaren lyckades men den kunde inte skriva ut."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "För mer information om felet, vänligen sök online efter:"
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "ลิ้นชักเก็บเงิน"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"ตรวจสอบการกำหนดค่าเครื่องพิมพ์สำหรับการตั้งค่า 'รหัสอุปกรณ์' ควรตั้งค่าเป็น:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ตั้งค่าการกำหนดค่า"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "การเชื่อมต่อกับเครื่องพิมพ์ล้มเหลว"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP เครื่องพิมพ์ Epson "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "ที่อยู่ IP เครื่องพิมพ์ใบเสร็จของ Epson "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"หากคุณอยู่บนเซิร์ฟเวอร์ที่ปลอดภัย (HTTPS) "
|
||||
"โปรดตรวจสอบว่าคุณยอมรับการรับรองด้วยตนเองโดยเข้าไปที่ %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "ที่อยู่ Local IP ในเครื่องพิมพ์ใบเสร็จของ Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "เครื่องพิมพ์ตรวจไม่พบกระดาษ"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "โปรดตรวจสอบว่าเครื่องพิมพ์มีกระดาษเพียงพอและพร้อมที่จะพิมพ์หรือไม่"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"โปรดตรวจสอบว่าเครื่องพิมพ์ยังคงเชื่อมต่ออยู่หรือไม่\n"
|
||||
"เบราว์เซอร์บางตัวไม่อนุญาตให้มีการโทร HTTP จากเว็บไซต์ไปยังอุปกรณ์ในเครือข่าย (ด้วยเหตุผลด้านความปลอดภัย) หากเป็นกรณีนี้ คุณจะต้องปฏิบัติตามเอกสารของ Odoo สำหรับ 'ใบรับรองที่ลงนามด้วยตนเองสำหรับเครื่องพิมพ์ ePOS' และ 'การเชื่อมต่อที่ปลอดภัย (HTTPS)' เพื่อแก้ไขปัญหานี้"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "กำหนดค่าการขายหน้าร้าน"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "เครื่องพิมพ์ POS Epson Ip"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "การพิมพ์ล้มเหลว"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"เครื่องพิมพ์ใบเสร็จของ Epson "
|
||||
"จะใช้แทนเครื่องพิมพ์ใบเสร็จที่เชื่อมต่อกับกล่องไอโอที"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "เครื่องพิมพ์ได้รับรหัสข้อผิดพลาดต่อไปนี้:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "เข้าถึงเครื่องพิมพ์สำเร็จแล้ว แต่ไม่สามารถพิมพ์ได้"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"หากต้องการดูรายละเอียดเพิ่มเติมเกี่ยวกับสาเหตุของข้อผิดพลาด "
|
||||
"โปรดค้นหาทางออนไลน์ด้วย:"
|
||||
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Nakit Çekmece"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"'Aygıt Kimliği' ayarı için yazıcı yapılandırmasını kontrol edin. Şu şekilde "
|
||||
"ayarlanmalıdır:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Yapılandırma Ayarları"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Yazıcıya bağlantı başarısız"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson Yazıcı IP'si"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson Makbuz Yazıcısı IP Adresi"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Güvenli bir sunucudaysanız (HTTPS) lütfen %s adrese erişerek sertifikayı "
|
||||
"manuel olarak kabul ettiğinizden emin olun"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Yazıcı tarafından kağıt algılanmadı"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr ""
|
||||
"Lütfen yazıcıda yeterli kağıt olup olmadığını ve yazdırmaya hazır olup "
|
||||
"olmadığını kontrol edin."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Lütfen yazıcının hala bağlı olup olmadığını kontrol edin. \n"
|
||||
"Bazı tarayıcılar, web sitelerinden ağdaki cihazlara HTTP çağrılarına izin vermez (güvenlik nedenleriyle). Bu durumda, sorunu çözmek için Odoo'nun 'ePOS yazıcılar için otomatik olarak imzalanan sertifika' ve 'Güvenli bağlantı (HTTPS)' belgelerini izlemeniz gerekecektir"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Satış Noktası Yapılandırması"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Pos Epson Yazıcı IP'si"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Yazdırma başarısız oldu"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"IoT Box'a bağlı fiş yazıcısı yerine Epson fiş yazıcısı kullanılacaktır."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Yazıcı tarafından aşağıdaki hata kodu verildi:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Yazıcıya başarıyla ulaşıldı, ancak yazdırılamadı."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Hata nedeni hakkında daha fazla ayrıntı bulmak için lütfen çevrimiçi olarak "
|
||||
"şunu arayın:"
|
||||
|
|
@ -0,0 +1,151 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Касова скринька"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Перевірте параметр «ID пристрою» в конфігурації принтера. Його слід "
|
||||
"встановити на:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налаштування"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "З'єднання з принтером не вдалося"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr " IP принтера Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "IP-адреса принтера чеків Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Якщо ви перебуваєте на захищеному сервері (HTTPS), переконайтеся, що ви "
|
||||
"вручну прийняли сертифікат, отримавши доступ до %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Локальна IP-адреса принтера чеків Epson."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "У принтері відсутній папір"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "Перевірте, чи достатньо в принтері паперу та чи готовий він до друку."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Будь ласка, перевірте, чи принтер все ще підключений. \n"
|
||||
"Деякі браузери не дозволяють HTTP-дзвінки з веб-сайтів на пристрої в мережі (з міркувань безпеки). Якщо це так, вам потрібно буде дотримуватися документації Odoo щодо «Самопідписаного сертифіката для принтерів ePOS» і «Безпечного з’єднання (HTTPS)», щоб вирішити проблему"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Налаштування точки продажу"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Ip принтера Epson точки продажу"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "Друк не вдався"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Принтер чеків Epson буде використовуватися замість принтера чеків, "
|
||||
"підключеного до IoT Box."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Принтер надав такий код помилки:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "До принтера вдалося підключитися, але він не зміг друкувати."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr ""
|
||||
"Щоб знайти докладнішу інформацію про причину помилки, знайдіть в Інтернеті:"
|
||||
|
|
@ -0,0 +1,149 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2025\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "Ngăn két"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr ""
|
||||
"Kiểm tra cấu hình máy in để biết cài đặt 'ID thiết bị'. Nên đặt thành:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cài đặt cấu hình"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "Kết nối với máy in không thành công"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "IP máy in Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Địa chỉ IP máy in biên lai Epson"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr ""
|
||||
"Nếu bạn đang sử dụng máy chủ bảo mật (HTTPS), hãy bảo đảm bạn đã chấp nhận "
|
||||
"chứng chỉ theo cách thủ công bằng cách truy cập %s"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__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
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "Máy in không phát hiện giấy"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "Vui lòng kiểm tra xem máy in có đủ giấy và sẵn sàng in không. "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"Vui lòng kiểm tra xem máy in còn được kết nối hay không.\n"
|
||||
"Một số trình duyệt không cho phép gọi HTTP từ trang web đến thiết bị trong mạng (vì lý do bảo mật). Nếu đúng như vậy, bạn cần làm theo tài liệu của Odoo về 'Chứng chỉ tự ký cho máy in ePOS' và 'Kết nối an toàn (HTTPS)' để giải quyết vấn đề"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "Cấu hình điểm bán lẻ"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "IP máy in Epson POS"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "In không thành công"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr ""
|
||||
"Máy in hóa đơn Epson sẽ được sử dụng thay vì máy in hóa đơn kết nối với Hộp "
|
||||
"IoT. "
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "Máy in hiển thị mã lỗi sau:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "Máy in đã được kết nối thành công, nhưng không thể in."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "Để biết thêm chi tiết về lý do lỗi, vui lòng tra cứu online:"
|
||||
|
|
@ -0,0 +1,146 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
# Chloe Wang, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Chloe Wang, 2023\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
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "钱箱"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr "检查打印机配置中的 \"设备 ID\"。应设置为:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置设置"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "与打印机的连接失败"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson 打印机 IP地址"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson收据打印机IP地址"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr "如果您是在一个安全的服务器(HTTPS)上,请确保您通过访问%s手动接受证书。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson收据打印机的本地IP地址。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "打印机未检测到纸张"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "请检查打印机是否有足够的纸张并准备好打印。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
"请检查打印机是否仍在连接。\n"
|
||||
"有些浏览器不允许从网站到网络中的设备进行HTTP调用(出于安全原因)。如果是这种情况,你需要按照Odoo的 “ePOS打印机的自签名证书 ”和 “安全连接(HTTPS)”文档来解决这个问题。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS配置"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "POS Epson打印机IP地址"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "打印失败"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr "将使用Epson收据打印机代替连接到 IoT Box 的收据打印机."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "打印机给出了以下错误代码:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "已成功连接打印机,但无法打印。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "有关错误原因的详细信息,请上网搜索:"
|
||||
|
|
@ -0,0 +1,142 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * pos_epson_printer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tony Ng, 2024\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Cashdrawer"
|
||||
msgstr "收銀機"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Check on the printer configuration for the 'Device ID' setting. It should be"
|
||||
" set to: "
|
||||
msgstr "請檢查打印機配置中的\"設備 ID\",應設置為:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置設定"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Connection to the printer failed"
|
||||
msgstr "與印表機的連接失敗"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Epson Printer IP"
|
||||
msgstr "Epson 印表機 IP"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid "Epson Receipt Printer IP Address"
|
||||
msgstr "Epson 收據印表機 IP 地址"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"If you are on a secure server (HTTPS) please make sure you manually accepted"
|
||||
" the certificate by accessing %s"
|
||||
msgstr "如果您使用的是安全伺服器 (HTTPS),請確保您通過存取 %s 手動接受了證書"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,help:pos_epson_printer.field_pos_config__epson_printer_ip
|
||||
msgid "Local IP address of an Epson receipt printer."
|
||||
msgstr "Epson 收據印表機的本地 IP 地址."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "No paper was detected by the printer"
|
||||
msgstr "打印機偵測不到有紙張"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Please check if the printer has enough paper and is ready to print."
|
||||
msgstr "請檢查印表機是否有足夠的紙張並準備好列印。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please check if the printer is still connected. \n"
|
||||
"Some browsers don't allow HTTP calls from websites to devices in the network (for security reasons). If it is the case, you will need to follow Odoo's documentation for 'Self-signed certificate for ePOS printers' and 'Secure connection (HTTPS)' to solve the issue"
|
||||
msgstr ""
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model,name:pos_epson_printer.model_pos_config
|
||||
msgid "Point of Sale Configuration"
|
||||
msgstr "POS設定"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model:ir.model.fields,field_description:pos_epson_printer.field_res_config_settings__pos_epson_printer_ip
|
||||
msgid "Pos Epson Printer Ip"
|
||||
msgstr "Pos Epson打印機IP地址"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "Printing failed"
|
||||
msgstr "列印失敗"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.pos_iot_config_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:pos_epson_printer.res_config_settings_view_form
|
||||
msgid ""
|
||||
"The Epson receipt printer will be used instead of the receipt printer "
|
||||
"connected to the IoT Box."
|
||||
msgstr "將使用 Epson 收據印表機替换 IoT 收據印表機."
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The following error code was given by the printer:"
|
||||
msgstr "打印機提供了以下錯誤代碼:"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "The printer was successfully reached, but it wasn't able to print."
|
||||
msgstr "已成功連接打印機,但無法列印。"
|
||||
|
||||
#. module: pos_epson_printer
|
||||
#. odoo-javascript
|
||||
#: code:addons/pos_epson_printer/static/src/js/printers.js:0
|
||||
#, python-format
|
||||
msgid "To find more details on the error reason, please search online for:"
|
||||
msgstr "若想了解錯誤原因的更多詳情,請在網上搜尋:"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import pos_config
|
||||
from . import res_config_settings
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = 'pos.config'
|
||||
|
||||
epson_printer_ip = fields.Char(string='Epson Printer IP', help="Local IP address of an Epson receipt printer.")
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models, api
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
pos_epson_printer_ip = fields.Char(compute='_compute_pos_epson_printer_ip', store=True, readonly=False)
|
||||
|
||||
@api.depends('pos_epson_printer_ip', 'pos_other_devices')
|
||||
def _compute_pos_iface_cashdrawer(self):
|
||||
"""We are just adding depends on this compute."""
|
||||
super()._compute_pos_iface_cashdrawer()
|
||||
|
||||
def _is_cashdrawer_displayed(self, res_config):
|
||||
return super()._is_cashdrawer_displayed(res_config) or (res_config.pos_other_devices and bool(res_config.pos_epson_printer_ip))
|
||||
|
||||
@api.depends('pos_other_devices', 'pos_config_id')
|
||||
def _compute_pos_epson_printer_ip(self):
|
||||
for res_config in self:
|
||||
if not res_config.pos_other_devices:
|
||||
res_config.pos_epson_printer_ip = ''
|
||||
else:
|
||||
res_config.pos_epson_printer_ip = res_config.pos_config_id.epson_printer_ip
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
odoo.define('pos_epson_printer.pos_epson_printer', 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');
|
||||
|
||||
|
||||
const PosEpsonPosGlobalState = (PosGlobalState) => class PosEpsonPosGlobalState extends PosGlobalState {
|
||||
after_load_server_data() {
|
||||
var self = this;
|
||||
return super.after_load_server_data(...arguments).then(function () {
|
||||
if (self.config.other_devices && self.config.epson_printer_ip) {
|
||||
self.env.proxy.printer = new EpsonPrinter(self.config.epson_printer_ip , self);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Registries.Model.extend(PosGlobalState, PosEpsonPosGlobalState);
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1,193 @@
|
|||
|
||||
odoo.define('pos_epson_printer.Printer', function (require) {
|
||||
"use strict";
|
||||
|
||||
var core = require('web.core');
|
||||
var { PrinterMixin, PrintResult, PrintResultGenerator } = require('point_of_sale.Printer');
|
||||
|
||||
var QWeb = core.qweb;
|
||||
var _t = core._t;
|
||||
|
||||
class EpsonPrintResultGenerator extends PrintResultGenerator {
|
||||
constructor(address) {
|
||||
super();
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
IoTActionError() {
|
||||
var printRes = new PrintResult({
|
||||
successful: false,
|
||||
message: {
|
||||
title: _t('Connection to the printer failed'),
|
||||
body: _t('Please check if the printer is still connected. \n' +
|
||||
'Some browsers don\'t allow HTTP calls from websites to devices in the network (for security reasons). ' +
|
||||
'If it is the case, you will need to follow Odoo\'s documentation for ' +
|
||||
'\'Self-signed certificate for ePOS printers\' and \'Secure connection (HTTPS)\' to solve the issue'
|
||||
),
|
||||
}
|
||||
});
|
||||
|
||||
if (window.location.protocol === 'https:') {
|
||||
printRes.message.body += _.str.sprintf(
|
||||
_t('If you are on a secure server (HTTPS) please make sure you manually accepted the certificate by accessing %s'),
|
||||
this.address
|
||||
);
|
||||
}
|
||||
|
||||
return printRes;
|
||||
}
|
||||
|
||||
IoTResultError(printerErrorCode) {
|
||||
let message = _t("The printer was successfully reached, but it wasn't able to print.") + '\n';
|
||||
if (printerErrorCode) {
|
||||
message += '\n' + _t("The following error code was given by the printer:") + '\n' + printerErrorCode;
|
||||
|
||||
const extra_messages = {
|
||||
'DeviceNotFound':
|
||||
_t("Check on the printer configuration for the 'Device ID' setting. " +
|
||||
"It should be set to: ") + "\nlocal_printer",
|
||||
'EPTR_REC_EMPTY':
|
||||
_t("No paper was detected by the printer"),
|
||||
};
|
||||
if (printerErrorCode in extra_messages) {
|
||||
message += '\n' + extra_messages[printerErrorCode];
|
||||
}
|
||||
message += "\n" + _t("To find more details on the error reason, please search online for:") + '\n' +
|
||||
" Epson Server Direct Print " + printerErrorCode;
|
||||
} else {
|
||||
message += _t('Please check if the printer has enough paper and is ready to print.');
|
||||
}
|
||||
return new PrintResult({
|
||||
successful: false,
|
||||
message: {
|
||||
title: _t('Printing failed'),
|
||||
body: message,
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
var EpsonPrinter = core.Class.extend(PrinterMixin, {
|
||||
init(ip, pos) {
|
||||
PrinterMixin.init.call(this, pos);
|
||||
var url = window.location.protocol + '//' + ip;
|
||||
this.address = url + '/cgi-bin/epos/service.cgi?devid=local_printer';
|
||||
this.printResultGenerator = new EpsonPrintResultGenerator(url);
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* Transform a (potentially colored) canvas into a monochrome raster image.
|
||||
* We will use Floyd-Steinberg dithering.
|
||||
*/
|
||||
_canvasToRaster(canvas) {
|
||||
var imageData = canvas.getContext('2d').getImageData(0, 0, canvas.width, canvas.height);
|
||||
var pixels = imageData.data;
|
||||
var width = imageData.width;
|
||||
var height = imageData.height;
|
||||
var errors = Array.from(Array(width), _ => Array(height).fill(0));
|
||||
var rasterData = new Array(width * height).fill(0);
|
||||
|
||||
for (var y = 0; y < height; y++) {
|
||||
for (var x = 0; x < width; x++) {
|
||||
var idx, oldColor, newColor;
|
||||
|
||||
// Compute grayscale level. Those coefficients were found online
|
||||
// as R, G and B have different impacts on the darkness
|
||||
// perception (e.g. pure blue is darker than red or green).
|
||||
idx = (y * width + x) * 4;
|
||||
oldColor = pixels[idx] * 0.299 + pixels[idx+1] * 0.587 + pixels[idx+2] * 0.114;
|
||||
|
||||
// Propagate the error from neighbor pixels
|
||||
oldColor += errors[x][y];
|
||||
oldColor = Math.min(255, Math.max(0, oldColor));
|
||||
|
||||
if (oldColor < 128) {
|
||||
// This pixel should be black
|
||||
newColor = 0;
|
||||
rasterData[y * width + x] = 1;
|
||||
} else {
|
||||
// This pixel should be white
|
||||
newColor = 255;
|
||||
rasterData[y * width + x] = 0;
|
||||
}
|
||||
|
||||
// Propagate the error to the following pixels, based on
|
||||
// Floyd-Steinberg dithering.
|
||||
var error = oldColor - newColor;
|
||||
if (error) {
|
||||
if (x < width - 1) {
|
||||
// Pixel on the right
|
||||
errors[x + 1][y] += 7/16 * error;
|
||||
}
|
||||
if (x > 0 && y < height - 1) {
|
||||
// Pixel on the bottom left
|
||||
errors[x - 1][y + 1] += 3/16 * error;
|
||||
}
|
||||
if (y < height - 1) {
|
||||
// Pixel below
|
||||
errors[x][y + 1] += 5/16 * error;
|
||||
}
|
||||
if (x < width - 1 && y < height - 1) {
|
||||
// Pixel on the bottom right
|
||||
errors[x + 1][y + 1] += 1/16 * error;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return rasterData.join('');
|
||||
},
|
||||
|
||||
/**
|
||||
* Base 64 encode a raster image
|
||||
*/
|
||||
_encodeRaster(rasterData) {
|
||||
var encodedData = '';
|
||||
for(var i = 0; i < rasterData.length; i+=8){
|
||||
var sub = rasterData.substr(i, 8);
|
||||
encodedData += String.fromCharCode(parseInt(sub, 2));
|
||||
}
|
||||
return btoa(encodedData);
|
||||
},
|
||||
|
||||
/**
|
||||
* Create the raster data from a canvas
|
||||
*
|
||||
* @override
|
||||
*/
|
||||
process_canvas(canvas) {
|
||||
var rasterData = this._canvasToRaster(canvas);
|
||||
var encodedData = this._encodeRaster(rasterData);
|
||||
return QWeb.render('ePOSPrintImage', {
|
||||
image: encodedData,
|
||||
width: canvas.width,
|
||||
height: canvas.height,
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
open_cashbox() {
|
||||
var pulse = QWeb.render('ePOSDrawer');
|
||||
this.send_printing_job(pulse);
|
||||
},
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
async send_printing_job(img) {
|
||||
const res = await $.ajax({
|
||||
url: this.address,
|
||||
method: 'POST',
|
||||
data: img,
|
||||
});
|
||||
const response = $(res).find('response');
|
||||
return {"result": response.attr('success') === 'true', "printerErrorCode": response.attr('code')};
|
||||
},
|
||||
});
|
||||
|
||||
return EpsonPrinter;
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
<t t-name="ePOSTemplate">
|
||||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
|
||||
<s:Body>
|
||||
<epos-print xmlns="http://www.epson-pos.com/schemas/2011/03/epos-print">
|
||||
<t t-out="0"/>
|
||||
</epos-print>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
||||
</t>
|
||||
|
||||
<t t-name="ePOSPrintImage">
|
||||
<t t-call="ePOSTemplate">
|
||||
<image t-att-width="width" t-att-height="height" align="center" t-esc="image"/>
|
||||
<cut type="feed"/>
|
||||
</t>
|
||||
</t>
|
||||
|
||||
<t t-name="ePOSDrawer">
|
||||
<t t-call="ePOSTemplate">
|
||||
<pulse/>
|
||||
</t>
|
||||
</t>
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="pos_iot_config_view_form" model="ir.ui.view">
|
||||
<field name="name">pos.iot.config.form.view</field>
|
||||
<field name="model">pos.config</field>
|
||||
<field name="inherit_id" ref="point_of_sale.pos_config_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@id='other_devices']//div[hasclass('o_setting_right_pane')]" position="inside">
|
||||
<div class="content-group" attrs="{'invisible' : [('other_devices', '=', False)]}">
|
||||
<field name="epson_printer_ip" placeholder="Epson Receipt Printer IP Address" />
|
||||
<div class="row" attrs="{'invisible': [('epson_printer_ip', 'in', [False, ''])]}">
|
||||
<label string="Cashdrawer" for="iface_cashdrawer" class="col-lg-3 o_light_label"/>
|
||||
<field name="iface_cashdrawer"/>
|
||||
</div>
|
||||
</div>
|
||||
<div role="alert" class="alert alert-warning" attrs="{'invisible': ['|', '|', ('iface_print_via_proxy', '!=', True), ('other_devices', '!=', True), ('epson_printer_ip', 'in', [False, ''])]}">
|
||||
The Epson receipt printer will be used instead of the receipt printer connected to the IoT Box.
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.pos.epson.printer</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="point_of_sale.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@id='pos_other_devices']//div[hasclass('o_setting_right_pane')]" position="inside">
|
||||
<div class="content-group" attrs="{'invisible' : [('pos_other_devices', '=', False)]}">
|
||||
<field name="pos_epson_printer_ip" placeholder="Epson Receipt Printer IP Address" />
|
||||
<div class="row" attrs="{'invisible': [('pos_epson_printer_ip', 'in', [False, ''])]}">
|
||||
<label string="Cashdrawer" for="pos_iface_cashdrawer" class="col-lg-3 o_light_label"/>
|
||||
<field name="pos_iface_cashdrawer"/>
|
||||
</div>
|
||||
</div>
|
||||
<div role="alert" class="alert alert-warning" attrs="{'invisible': ['|', '|', ('pos_iface_print_via_proxy', '!=', True), ('pos_other_devices', '!=', True), ('pos_epson_printer_ip', 'in', [False, ''])]}">
|
||||
The Epson receipt printer will be used instead of the receipt printer connected to the IoT Box.
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
42
odoo-bringout-oca-ocb-pos_epson_printer/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-pos_epson_printer/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-pos_epson_printer"
|
||||
version = "16.0.0"
|
||||
description = "pos_epson_printer - Epson ePOS Printers in PoS"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-point_of_sale>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["pos_epson_printer"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue