Initial commit: Pos packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:50 +02:00
commit 95dfb9edb0
1301 changed files with 264148 additions and 0 deletions

View file

@ -0,0 +1,50 @@
# pos_hr
This module allows Employees (and not users) to log in to the Point of Sale application using a barcode, a PIN number or both.
The actual till still requires one user but an unlimited number of employees can log on to that till and process sales.
## Installation
```bash
pip install odoo-bringout-oca-ocb-pos_hr
```
## Dependencies
This addon depends on:
- point_of_sale
- hr
## Manifest Information
- **Name**: pos_hr
- **Version**: N/A
- **Category**: Hidden
- **License**: LGPL-3
- **Installable**: True
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `pos_hr`.
## 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

View 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_hr Module - pos_hr
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.

View file

@ -0,0 +1,3 @@
# Configuration
Refer to Odoo settings for pos_hr. Configure related models, access rights, and options as needed.

View file

@ -0,0 +1,3 @@
# Controllers
This module does not define custom HTTP controllers.

View file

@ -0,0 +1,6 @@
# Dependencies
This addon depends on:
- [point_of_sale](../../odoo-bringout-oca-ocb-point_of_sale)
- [hr](../../odoo-bringout-oca-ocb-hr)

View 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_hr or install in UI.

View file

@ -0,0 +1,7 @@
# Install
```bash
pip install odoo-bringout-oca-ocb-pos_hr"
# or
uv pip install odoo-bringout-oca-ocb-pos_hr"
```

View file

@ -0,0 +1,17 @@
# Models
Detected core models and extensions in pos_hr.
```mermaid
classDiagram
class hr_employee
class hr_employee_public
class pos_config
class pos_order
class pos_session
class res_config_settings
```
Notes
- Classes show model technical names; fields omitted for brevity.
- Items listed under _inherit are extensions of existing models.

View file

@ -0,0 +1,6 @@
# Overview
Packaged Odoo addon: pos_hr. Provides features documented in upstream Odoo 16 under this addon.
- Source: OCA/OCB 16.0, addon pos_hr
- License: LGPL-3

View file

@ -0,0 +1,25 @@
# Reports
Report definitions and templates in pos_hr.
```mermaid
classDiagram
class PosOrderReport
Model <|-- PosOrderReport
```
## Available Reports
No named reports found in XML files.
## Report Files
- **__init__.py** (Python logic)
- **pos_order_report.py** (Python logic)
## Notes
- Named reports above are accessible through Odoo's reporting menu
- Python files define report logic and data processing
- XML files contain report templates, definitions, and formatting
- Reports are integrated with Odoo's printing and email systems

View 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

View file

@ -0,0 +1,5 @@
# Troubleshooting
- Ensure Python and Odoo environment matches repo guidance.
- Check database connectivity and logs if startup fails.
- Validate that dependent addons listed in DEPENDENCIES.md are installed.

View 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_hr
```

View file

@ -0,0 +1,3 @@
# Wizards
This module does not include UI wizards.

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
from . import models
from . import report

View file

@ -0,0 +1,41 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "pos_hr",
'category': "Hidden",
'summary': 'Link module between Point of Sale and HR',
'description': """
This module allows Employees (and not users) to log in to the Point of Sale application using a barcode, a PIN number or both.
The actual till still requires one user but an unlimited number of employees can log on to that till and process sales.
""",
'depends': ['point_of_sale', 'hr'],
'data': [
'views/pos_config.xml',
'views/pos_order_view.xml',
'views/pos_order_report_view.xml',
'views/res_config_settings_views.xml',
],
'installable': True,
'auto_install': True,
'assets': {
'point_of_sale.assets': [
'pos_hr/static/src/css/pos.css',
'pos_hr/static/src/js/models.js',
'pos_hr/static/src/js/SelectCashierMixin.js',
'pos_hr/static/src/js/Chrome.js',
'pos_hr/static/src/js/HeaderLockButton.js',
'pos_hr/static/src/js/CashierName.js',
'pos_hr/static/src/js/LoginScreen.js',
'pos_hr/static/src/js/PaymentScreen.js',
'pos_hr/static/src/xml/**/*',
],
'web.assets_tests': [
'pos_hr/static/tests/**/*',
],
},
'license': 'LGPL-3',
}

View file

@ -0,0 +1,146 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,146 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Farid Fox, 2022
# Malaz Abuidris <msea@odoo.com>, 2024
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "الموظفون المسموح لهم "
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "أمين الصندوق "
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "تغيير أمين الصندوق "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "تهيئة الإعدادات "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "الموظف"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "الموظف: %s - تهيئة نقطة البيع: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "موظفون لديهم صلاحيات الوصول"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"إذا تم تركه فارغاً، سيتمكن كافة الموظفين من تسجيل الدخول إلى جلسات نقطة "
"البيع "
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "كلمة المرور غير صحيحة"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "تسجيل الدخول إلى"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "كلمة المرور؟"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"الشخص الذي يستخدم صندوق تسجيل النقد. قد يكون البائع أو طالب أو موظف متدرب."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "تهيئة نقطة البيع "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "طلبات نقطة البيع "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "تقرير طلبات نقطة البيع "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "جلسة نقطة البيع"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "موظف في القطاع العام"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "قم بمسح شارتك "
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "تحديد أمين الصندوق "
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"لا يمكنك حذف موظف قد يكون مستخدَماً في جلسة نقطة بيع نشطة. قم بإغلاق الجلسة "
"(الجلسات) أولاً: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "أو"

View file

@ -0,0 +1,158 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Jumshud Sultanov <cumshud@gmail.com>, 2022
# erpgo translator <jumshud@erpgo.az>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2025\n"
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kassir"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Parametrləri Konfiqurasiya edin"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "İşçi"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Kassadan istifadə edən şəxs. Bu bir əvəzçi, tələbə və ya müvəqqəti işçi ola"
" bilər."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Satış Nöqtəsi Konfiqurasiyası"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Satış Nöqtəsi Sifarişləri"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Satış Nöqtəsi Sifarişlər Hesabatı"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Satış Nöqtəsi Sessiyası"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Dövlət Qulluqçusu"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Bəcik nişanınızı skan edin"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "və yaxud"

View file

@ -0,0 +1,150 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Ivan Shakh, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Налады канфігурацыі"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,162 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# KeyVillage, 2023
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
# aleksandar ivanov, 2023
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
# Martin Trigaux, 2023
# Ивайло Малинов <iv.malinov@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Ивайло Малинов <iv.malinov@gmail.com>, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Касиер"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Сменете касиер"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Настройки"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Служител"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Неправилна парола"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Парола ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Лице, което използва касовия апарат. Може да бъде сътрудник, курсист или "
"междинен служител."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Конфигурация на център за продажби"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Поръчки на центъра за продажби"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Сесия на център за продажби"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Публичен служител"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Сканиране на значка"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "или"

View file

@ -0,0 +1,151 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2025-02-10 08:27+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Dozvoljeni djelatnici"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Blagajnik"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Promijeni blagajnika"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Postavke"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Zaposlenik"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Djelatnik: %s - PoS Config(a): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Djelatnici sa pristupom"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Ako je ostavljeno prazno, svi djelatnici se mogu prijaviti u PoS sesiju"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Netočna lozinka"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Prijava u"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Lozinka ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Postavke prodajnog mjesta"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Nalozi POS-a"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Izvješće o narudžbama na prodajnim mjestima"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Smjena POS-a"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Javni djelatnik"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skenirajte svoju značku"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Odaberi blagajnika"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ili"

View file

@ -0,0 +1,166 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Quim - coopdevs <quim.rebull@coopdevs.org>, 2022
# Josep Anton Belchi, 2022
# RGB Consulting <odoo@rgbconsulting.com>, 2022
# marcescu, 2022
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
# Ivan Espinola, 2022
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Empleats permesos"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Caixer"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Canviar el Caixer"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Ajustos de configuració"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Empleat"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Empleat:%s - PoS Config(s): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Empleats amb accés"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Si es deixa buit, tots els empleats poden entrar a la sessió del PoS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Contrasenya incorrecta"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Inicia la sessió a"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Contrasenya ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Persones que utilitzen la caixa registradora. Pot ser un substitut, un "
"estudiant o un empleat interí."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configuració del Punt de Venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Comandes del Punt de Venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Informe de tiquets de punt de venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sessió del Punt de Venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Empleat públic"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Escanegi la seva identificació"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Seleccioneu Cashier"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"No es pot suprimir un empleat que pugui ser utilitzat en una sessió activa "
"de PoS, tancar primer les session(s):\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "o"

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
# Martin Trigaux, 2022
# Wil Odoo, 2025
# Marta Wacławek, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Marta Wacławek, 2025\n"
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Pokladní"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Změnit pokladníka"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Nastavení konfigurace"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Zaměstnanec"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Zaměstnanec: %s - PoS Konfigurace: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Nesprávné heslo"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Heslo ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Osoba, která používá pokladnu. Může to být brigádník, student nebo dočasný "
"zaměstnanec."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Nastavení prodejního místa"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Objednávky Prodejního místa"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Zpráva o objednávkách z místa prodeje"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sezení Prodejního místa"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Veřejný zaměstnanec"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Naskenujte svůj visačku"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Zaměstnance nelze smazat, protože může být používán v aktivní pokladní "
"relaci. Nejprve uzavřete tuto relaci (relace): \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "nebo"

View file

@ -0,0 +1,160 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Ekspedient"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Skift ekspedient"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Konfigurer opsætning"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Medarbejder"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Medarbejder: %s - PoS Konfiguration(er): %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Medarbejdere med adgang"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Hvis tom, kan alle medarbejdere logge ind i PoS sessionen"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Forkert adgangskode"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Log ind på"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Adgangskode?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Person som anvender kasseapparatet. Det kan være en praktikant, midlertidig "
"ansat, eller flex ansat."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "POS konfiguration"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "POS ordrer"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Point of Sale ordre rapport"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "POS session"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Offentlig ansat"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skan dit badge"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Vælg ekspedient"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Du kan ikke slette en medarbejder som kan bruges i en aktiv PoS session, luk"
" session(erne) først:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "eller"

View file

@ -0,0 +1,161 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Larissa Manderfeld, 2023
# Martin Trigaux, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Erlaubte Mitarbeiter"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kassierer"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Kassierer wechseln"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Konfigurationseinstellungen"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Mitarbeiter"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Mitarbeiter: %s - Kassenkonfiguration(en): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Mitarbeiter mit Zugriff"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Falls leer, können Mitarbeiter sich in der Kassensitzung anmelden"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Falsches Passwort"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Anmelden bei"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Passwort?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Person, die die Registrierkasse verwendet. Es kann eine Aushilfe, ein "
"Student oder ein Interim-Mitarbeiter sein."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Kassensystem-Konfiguration"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Kassenverkäufe"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Bericht über Kassenverkäufe"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Kassensitzung"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Öffentlicher Mitarbeiter"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Ausweis scannen"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Kassierer wählen"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Mitarbeiter, die in aktiven Kassensitzungen verwendet werden, können nicht "
"gelöscht werden. Schließen Sie erst die Sitzung(en):\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "oder"

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Empleados Permitidos"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Cajero"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Cambiar cajero"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Ajustes de configuración"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Empleado"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Empleado: %s - Configuraciones del TPV: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Empleados con acceso"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Si se deja vacío, todos los empleados pueden iniciar sesión de usuario en la"
" sesión de PoS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Contraseña incorrecta"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Iniciar sesión a"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Contraseña?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Persona que utiliza la caja registradora. Puede ser un sustituto, un "
"estudiante o un empleado interino."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configuración del TPV"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Pedidos del TPV"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Informe de pedidos del TPV"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sesión TPV"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Empleado público"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Escanee su identificación"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Seleccionar cajero"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"No puede eliminar un empleado que puede estar en uso en una sesión activa de"
" TPV, primero cierre las sesiones: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "o"

View file

@ -0,0 +1,160 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
# Martin Trigaux, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Martin Trigaux, 2025\n"
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_MX\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Empleados permitidos"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Cajero"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Cambiar cajero"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Ajustes de configuración"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Empleado"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Empleado: %s - Configuración(es) del PdV: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Empleados con acceso"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Si se deja vacío todos lo empleados pueden acceder a la sesión de PdV"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Contraseña incorrecta"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Iniciar sesión en"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "¿Contraseña?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Persona que utiliza la caja registradora. Puede ser un sustituto, un "
"estudiante o un empleado interino."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configuración del PdV"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Pedidos del PdV"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Reporte de órdenes del punto de venta"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sesión del punto de venta"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Empleado público"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Escaneé su identificación"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Seleccionar cajero"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"No puede eliminar un empleado que puede estar en uso en una sesión activa de"
" PdV, primero cierre la(s) sesión(es): \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "o"

View file

@ -0,0 +1,167 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Rivo Zängov <eraser@eraser.ee>, 2022
# Maidu Targama <m.targama@gmail.com>, 2022
# Eneli Õigus <enelioigus@gmail.com>, 2022
# Triine Aavik <triine@avalah.ee>, 2022
# Martin Trigaux, 2022
# Anna, 2023
# JanaAvalah, 2023
# Siim Raasuke, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Siim Raasuke, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Lubatud töötajad"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kassiir"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Muuda Kassiiri"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Seadistused"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Töötaja"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Töötaja: %s PoS-i konfiguratsioonid: %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Ligipääsuga töötajad"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Kui tühjaks jäetud, siis kõik töötajad saavad sisse logida kassa seanssi"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Vale parool"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Logi sisse, et"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Parool?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Isik, kes kasutab kassaaparaati. Võib olla asendaja, õpetaja või ajutine "
"töötaja."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Kassa seadistused"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Kassa tellimused"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Kassa tellimuste raport"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Kassa Sessioon"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Avalik töötaja"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skaneeri oma märk"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Vali kassiir"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Te ei saa kustutada töötajat, keda võib olla kasutatakse aktiivses "
"kassaseansis, sulge esmalt seanss:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "või"

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Hamed Mohammadi <hamed@dehongi.com>, 2023
# Hanna Kheradroosta, 2023
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
# Martin Trigaux, 2023
# Tiffany Chang, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Tiffany Chang, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "صندوقدار"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "تغییر صندوق‌دار"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "تنظیمات پیکربندی"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "کارمند"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "کارمند: %s - پیکربندی‌(های) نقطه فروش: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "کارمند با درسترسی"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "اگر انتخاب نشود همه کارمندان می‌توانند در نشست نقطه فروش وارد شوند"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "گذرواژه نادرست"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "ورود به"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "گذرواژه؟"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"شخصی که از صندوق پول استفاده می کند. این می تواند یک دانش آموز یا یک کارمند "
"موقت باشد."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "پیکربندی پایانه فروش"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "سفارشات پایانه فروش"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "گزارش سفارشات پایانه فروش"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "جلسه پایانه فروش"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Fonctionnaire"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "نشان خود را اسکن کنید"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "انتخاب صندوق‌دار"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"نمی‌توانید کارمندی که ممکن است شیفت فعال داشته باشد حذف کنید ابتدا شیفت(ها) "
"را ببندید: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "یا"

View file

@ -0,0 +1,165 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Sallitut työntekijät"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Myyjä"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Vaihda myyjää"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Asetukset"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Työntekijä"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Työntekijä: %s - Kassan määritykset: %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Työntekijät, joilla on pääsy"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Jos tämä jätetään tyhjäksi, kaikki työntekijät voivat kirjautua kassan "
"istuntoon"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Väärä salasana"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Kirjaudu sisään"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Salasana ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Henkilö, joka käyttää kassaa. Voi olla sijainen, opiskelija tai tilapäinen "
"työntekijä."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Kassapäätteen asetukset"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Kassapäätteen tilaukset"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Kassan tilausten raportti"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Kassapäätteen istunto"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Julkinen työntekijä"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skannaa tunnuskortti"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Valitse kassanhoitaja"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Et voi poistaa työntekijää, jota voidaan käyttää aktiivisessa "
"kassaistunnossa, sulje istunnot ensin:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "tai"

View file

@ -0,0 +1,164 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Cécile Collart <cco@odoo.com>, 2022
# Jolien De Paepe, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Employés autorisés"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Caissier"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Changer de caissier"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Paramètres de configuration"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Employé"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Employee: %s - Configuration(s) du point de vente : %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Employés ayant accès"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Si laissé vide, tous les employés peuvent se connecter à la session du point"
" de vente"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Mot de passe incorrect"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Connectez-vous à"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Mot de passe ? "
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Personnes qui utilisent la caisse. Il peut s'agir d'un remplaçant, d'un "
"étudiant ou d'un employé intérimaire."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configuration du point de vente"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Commandes du point de vente"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Rapport sur les commandes du point de vente"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Session du point de vente"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Fonctionnaire"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Scannez votre badge"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Sélectionner le caissier"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Vous ne pouvez pas supprimer un employé qui pourrait être utilisé dans une "
"session de point de vente active, fermez d'abord la ou les sessions : \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ou"

View file

@ -0,0 +1,150 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Qaidjohar Barbhaya, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Config Settings"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,159 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Yihya Hugirat <hugirat@gmail.com>, 2022
# שהאב חוסיין <shhab89@gmail.com>, 2022
# Martin Trigaux, 2022
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2025
# or balmas, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: or balmas, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "עובדים מורשים"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "קופאי"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "שנה קופאי"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "הגדר הגדרות"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "עובד"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "עובדים: %s - תצורות קופה: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "עובדים עם גישה"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "אם נותר ריק, כל העובדים יכולים להיכנס למשמרת קופה"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "סיסמה לא נכונה"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "התחבר ל"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "סיסמה ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "האדם המשתמש בקופה.יכול להיות מחליף, עובד זמני או מתלמד."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "תצורת קופה"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "הזמנות קופה"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "דוח הזמנות קופה"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "משמרת קופה "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "עובד ציבור"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "סרוק את התג שלך"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "בחר קופאי"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr "אינך יכול למחוק עובד שדרוש למשמרת קופה פעילה, סגור תחילה את המשמרות: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "או"

View file

@ -0,0 +1,156 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Wil Odoo, 2024
# Ujjawal Pathak, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "कॉन्फ़िगरेशन सेटिंग"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "कर्मचारी"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr " "

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Milan Tribuson <one.mile.code@gmail.com>, 2022
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
# hrvoje sić <hrvoje.sic@gmail.com>, 2022
# Tina Milas, 2022
# Martin Trigaux, 2022
# Bole <bole@dajmi5.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Dozvoljeni djelatnici"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Blagajnik"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Promijeni blagajnika"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Postavke"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Zaposlenik"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Djelatnik: %s - PoS Config(a): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Djelatnici sa pristupom"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Ako je ostavljeno prazno, svi djelatnici se mogu prijaviti u PoS sesiju"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Netočna lozinka"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Prijava u"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Lozinka ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "Osoba koja koristi blagajnu. To može biti student ili djelatnik."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Postavke prodajnog mjesta"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Nalozi POS-a"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Izvješće o narudžbama na prodajnim mjestima"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Smjena POS-a"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Javni djelatnik"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skenirajte svoju značku"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Odaberi blagajnika"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Nije moguće brisati djelatnika koji koristi otvorenu PoS sessiju, prvo "
"zatvorite sesiju(e):\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ili"

View file

@ -0,0 +1,160 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Zsolt Godó <zsolttokio@gmail.com>, 2022
# krnkris, 2022
# Martin Trigaux, 2022
# Tamás Dombos, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Tamás Dombos, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Pénztáros"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Kassza aprópénz"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Beállítások módosítása"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Alkalmazott"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Hibás jelszó"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Jelszó ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"A személy, aki használja a pénztárgépet. Ez lehet egy rohamoldó, egy diák, "
"vagy egy ideiglenes alkalmazottja."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Értékesítési pont beállítása"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Értékesítési pont rendelések"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Értékesítési Pont Értékesítési folyamat"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Nyilvános alkalmazott"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Jelvénye beszkennelése"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "vagy"

View file

@ -0,0 +1,146 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,162 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Ryanto The <ry.the77@gmail.com>, 2022
# Abe Manyo, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Karyawan yang Diizinkan"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kasir"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Ganti Kasir"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Pengaturan Konfigurasi"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Karyawan"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Karyawan: %s - Konfigurasi POS: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Karyawan dengan akses"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Jika dibiarkan kosong, semua karyawan dapat log in ke sesi POS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Password Salah"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Log in ke"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Password ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Orang yang menggunakan mesin kasir. Bisa merupakan bantuan, siswa atau "
"karyawan sementara."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Konfigurasi Point of Sale"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Order Point of Sale"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Laporan Order POS"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sesi Point of Sale"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Karyawan Publik"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Pindai lencana Anda"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Pilih Kasir"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Anda tidak dapat menghapus karyawan yang mungkin dapat digunakan di sesi POS"
" yang aktif, harap tutup sesi tersebut terlebih dahulu:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "atau"

View file

@ -0,0 +1,150 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Kristófer Arnþórsson, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Stillingarvalkostir"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "eða"

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Marianna Ciofani, 2023
# Sergio Zanchetta <primes2h@gmail.com>, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Dipendenti autorizzati"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Cassiere"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Cambio cassiere"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Impostazioni di configurazione"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Dipendente"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Dipendente: %s - Configurazioni POS: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Dipendenti con accesso"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Se lasciato vuoto, tutti i dipendenti possono accedere alla sessione POS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Password errata"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Accedi a"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Password ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Chi usa il registratore di cassa. Può essere un sostituto, uno studente o un"
" lavoratore interinale."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configurazione punto vendita"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Ordini punto vendita"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Rendiconto ordini punto vendita"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sessione punto vendita"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Dipendente pubblico"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Leggi tesserino"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Seleziona cassiere"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Impossibile eliminare un dipendente che può essere usato in una sessione POS"
" attiva, chiudere prima le sessioni: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "oppure"

View file

@ -0,0 +1,158 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Ryoko Tsuda <ryoko@quartile.co>, 2023
# Junko Augias, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\n"
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "許可された従業員"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "キャッシャー"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "キャッシャーを変更"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "コンフィグ設定"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "従業員"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "従業員: %s - POS 設定: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "パスワードが間違っています"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "以下にログイン:"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "レジを利用する方。それは、救援者、学生、または暫定従業員である可能性があります。"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "POS設定"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "POSオーダ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "POS注文レポート"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "POSセッション"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "公務員"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "バッジをスキャン"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "キャッシャーを選択"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr "有効なPOSセッションで使用されている従業員を削除することはできません。最初にセッションをクローズして下さい:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "または"

View file

@ -0,0 +1,152 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Sengtha Chay <sengtha@gmail.com>, 2023
# Lux Sok <sok.lux@gmail.com>, 2023
# Chan Nath <channath@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Chan Nath <channath@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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "អ្នកគិតលុយ"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "កំណត់រចនាសម្ព័ន្ធ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "បុគ្គលិក"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "ចំណុចនៃការកំណត់រចនាសម្ព័ន្ធលក់"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "ចំណុចនៃការបញ្ជាទិញការលក់"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "ចំណុចនៃវគ្គលក់"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "ស្កេនផ្លាកសញ្ញារបស់អ្នក"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ឬ​"

View file

@ -0,0 +1,159 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# 조성현 (jaymz9634) <jaymz9634@gmail.com>, 2022
# JH CHOI <hwangtog@gmail.com>, 2022
# Daye Jeong, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "허용된 직원"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "계산원"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "계산원 변경"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "설정 구성"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "임직원"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "직원 : %s - PoS 설정 : %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "접근 권한이 있는 직원"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "비워두면, 모든 직원들이 PoS 세션에 로그인 할 수 있습니다"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "잘못된 비밀번호"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "로그인"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "비밀번호 ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "금전 등록기를 사용하는 사람. 구제자, 학생 또는 임시 직원 일 수 있습니다."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "점포판매시스템 환경 설정"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "점포판매시스템 주문"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "점포판매시스템 주문 보고서"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "점포판매시스템 기간"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "일반 직원"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "배치 검색"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "계산원 선택"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr "활성화 중인 PoS 세션을 사용하는 사원은 삭제할 수가 없으니, 먼저 세션(들)을 닫아주세요: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "또는"

View file

@ -0,0 +1,170 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server saas~12.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-08-26 08:16+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
msgid "<span class=\"o_form_label oe_edit_only\">Allowed Employees </span>"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/js/chrome.js:0
#: code:addons/pos_hr/static/src/js/screens.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/xml/pos.xml:0
#, python-format
msgid "Close session"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/js/gui.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/js/chrome.js:0
#, python-format
msgid "Lock"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/xml/pos.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
msgid ""
"Only users with Manager access rights for PoS app can modify the product "
"prices on orders."
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/js/gui.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
msgid "Price Control"
msgstr ""
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
msgid "Restrict price modification to managers"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/xml/pos.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/xml/pos.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/js/gui.js:0
#, python-format
msgid "Select User"
msgstr ""
#. module: pos_hr
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. openerp-web
#: code:addons/pos_hr/static/src/xml/pos.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,151 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# sackda chanthasombath, 2023
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "ການຕັ້ງຄ່າ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "ພະນັກງານ"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ຫຼື"

View file

@ -0,0 +1,153 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Silvija Butko <silvija.butko@gmail.com>, 2022
# Aleksandr Jadov <a.jadov@tata.lt>, 2022
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Martin Trigaux, 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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kasininkas"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Keisti kasininką"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Konfigūracijos nustatymai"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Darbuotojas"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Neteisingas slaptažodis"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Slaptažodis ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "Asmuo, kuris naudoja kasos aparatą. "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Pardavimo taško konfigūracija"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "PT užsakymai"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Pardavimo taško užsakymų ataskaita"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Pardavimo taško sesija"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skenuokite savo pažymėjimą"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "arba"

View file

@ -0,0 +1,156 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Arnis Putniņš <arnis@allegro.lv>, 2022
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kasieris"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Mainīt kasieri"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Konfigurācijas uzstādījumi"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Darbinieks"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Darbinieks: %s - POS konfigurācija: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Darbinieki ar piekļuvi"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Ja atstāt tukšu, visi darbinieki varēs pierakstīties POS sesijai"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Nederīga parole"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Pierakstīties"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Parole ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Pārdošanas punkta konfigurācija"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Pārdošanas punkta pasūtījumi"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Pārdošanas punkta pasūtījumu atskaite"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Pārdošanas punkta sesija"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Publisks darbinieks"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Noskenējiet Jūsu nozīmīti"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Izvēlieties kasieri"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "vai"

View file

@ -0,0 +1,156 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Niyas Raphy, 2023
# Hasna <hasnausmantu@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Hasna <hasnausmantu@gmail.com>, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "കാഷ്യർ"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്‌സ്"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "എംപ്ലോയീ "
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "പോയിന്റ് ഓഫ് സെയിൽ കോൺഫിഗറേഷൻ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "പോയിന്റ് ഓഫ് സെയിൽ ഒർടേഴ്‌സ് "
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "പോയിന്റ് ഓഫ് സെയിൽ സെഷൻ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "പൊതു ജീവനക്കാരൻ"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "അഥവാ"

View file

@ -0,0 +1,159 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Bayarkhuu Bataa, 2025
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Зөвшөөрөгдсөн ажилчид"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Кассчин"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Кассчинг солих"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Тохиргооны тохируулга"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Ажилтан"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Нууц үг буруу байна"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Нууц үг ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Кассын бүртгэлийг ашигладаг хүн. Цагийн ажилтан, оюутан эсвэл түр ажилтан "
"байж ч болно."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Борлуулалтын цэгийн тохиргоо"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "ПОС захиалга"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "ПОС захиалгын тайлан"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "ПОС сэшн"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Ажилтны нээлттэй мэдээлэл"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Үнэмлэхээ уншуулна уу"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "эсвэл"

View file

@ -0,0 +1,150 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Mehjabin Farsana, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Tetapan Konfigurasi"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Pekerja"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Konfigurasi Tempat Jualan"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,161 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Marius Stedjan <marius@stedjan.com>, 2022
# Martin Trigaux, 2022
# Rune Restad, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Rune Restad, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Tillatt ansatte"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Ekspeditør"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Bytt ekspeditør"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Innstillinger"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Ansatt"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Ansatt: %s - Kassapunkt(er): %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Ansatte med tilgang"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Hvis denne er tom, kan alle ansatte logge inn i kassaøkten"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Feil passord"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Logg inn i"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Passord?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Person som bruker kassen. Det kan være en deltidsansatt, student eller "
"medhjelper."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Kassapunkt"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Kassaordrer"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Ordrerapport for kasse"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Kasseøkt"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Offentlig ansatt"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skann kortet ditt"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Velg ekspeditør"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Du kan ikke slette en ansatt som kan brukes i en aktiv kassaøkt. Lukk "
"økten(e) først:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "eller"

View file

@ -0,0 +1,161 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Toegestane werknemers"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kassamedewerker"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Wijzig kassamedewerker"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Configuratie instellingen"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Werknemer"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Werknemer: %s - kassa configuratie(s): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Werknemers met toegang"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Indien leeggelaten kunen alle werknemers aanmelden in de kassa sessie"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Foutief wachtwoord"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Log in op"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Wachtwoord?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Persoon die het kassaregister gebruikt. Het kan een helper, een student of "
"een interim werknemer zijn."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Kassa-instellingen"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Kassaorders"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Kassaorders-rapport"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Kassasessie"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Openbare werknemer"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Scan je badge"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Selecteer kassamedewerker"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Je kunt geen werknemer verwijderen die gebruikt wordt in een actieve "
"kassasessie, sluit de sessie(s) eerst af:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "of"

View file

@ -0,0 +1,146 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,170 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
# Maksym <ms@myodoo.pl>, 2022
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
# Radosław Biegalski <radoslaw.biegalski@openglobe.pl>, 2022
# Paweł Wodyński <pw@myodoo.pl>, 2022
# Tomasz Leppich <t.leppich@gmail.com>, 2022
# Jacek Michalski <michalski.jck@gmail.com>, 2022
# Martin Trigaux, 2022
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Dozwoleni pracownicy"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kasjer"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Zmiana kasjera"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Ustawienia konfiguracji"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Pracownik"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Pracownik: %s - Konfiguracja(e) PoS: %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Pracownicy z dostępem"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Jeżeli pozostawiono puste, wszyscy pracownicy mogą zalogować się do sesji "
"PoS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Niepoprawne hasło"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Zaloguj się do"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Hasło?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Osoba korzystająca z kasy fiskalnej. Może to być osoba pomagająca, student "
"lub pracownik tymczasowy."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Konfiguracja punktu sprzedaży"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Zamówienia Punktu Sprzedaży"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Raport punktu sprzedaży PoS"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sesja punktu sprzedaży"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Pracownik publiczny"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Zeskanuj swój identyfikator"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Wybierz kasjera"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Nie możesz usunąć pracownika który może być użyty w aktywnej sesji PoS, "
"najpierw zamknij sesję:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "lub"

View file

@ -0,0 +1,151 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2025-02-10 08:27+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,160 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2022
# Martin Trigaux, 2022
# Manuela Silva <mmsrs@sky.com>, 2022
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2025\n"
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Caixa"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Alterar Caixa"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Configurações"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Funcionário"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Palavra-passe Incorreta"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Palavra-passe?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Pessoa que usa o caixa. Pode ser um estudante ou um empregado interino, etc."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configuração do Ponto de Venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Ordens do Ponto de Venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sessão do Ponto de Venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Funcionário Público"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Passe o distintivo no digitalizador"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ou"

View file

@ -0,0 +1,162 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Funcionários permitidos"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Caixa"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Alterar caixa"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Configurações"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Funcionário"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Funcionário: %s - Config(s) PdV: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Funcionários com acesso"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Se deixado vazio, todos os funcionários poderão logar em sessão de PdV"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Senha Incorreta"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Logar em"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Senha?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"A pessoa que usa a caixa registadora. Ele pode ser um apaziguador, um "
"estudante ou um empregado interino."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configuração do Ponto de Vendas"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Pedidos do Ponto de Vendas"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Relatório de pedidos de Ponto de Venda"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sessão do Ponto de Vendas"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Funcionário público"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Escaneie seu crachá"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Selecionar Caixa"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Você não pode excluir um funcionário que pode ser usado em uma sessão de PdV"
" ativa, feche as sessões primeiro: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ou"

View file

@ -0,0 +1,164 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Foldi Robert <foldirobert@nexterp.ro>, 2022
# Hongu Cosmin <cosmin513@gmail.com>, 2022
# Martin Trigaux, 2022
# Dorin Hongu <dhongu@gmail.com>, 2024
# Betty Keresztesi, 2024
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Angajați permiși"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Casier"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Schimbare casier"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Setări de configurare"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Angajat"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Angajat: %s - PoS Config(s): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Angajați cu acces"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Dacă este lăsat gol, toți angajații se pot conecta la sesiunea PoS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Parolă incorectă"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Autentificare "
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Parolă?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Persoană care folosește casa de marcat. Poate fi un înlocuitor, un student "
"sau un angajat temporar."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Configurarea Punctului de Vânzare"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Comenzile Punctului de vânzare"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Raport Comenzi Punct de Vânzare"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sesiune Punct de vânzare"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Angajați Publici"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Scanați ecusonul dvs."
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Selectați Casier"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Nu puteți șterge un angajat care poate fi utilizat într-o sesiune PoS "
"activă, închideți mai întâi sesiunea (le):\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "sau"

View file

@ -0,0 +1,164 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# ILMIR <karamov@it-projects.info>, 2022
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
# Irina Fedulova <istartlin@gmail.com>, 2022
# Martin Trigaux, 2022
# Сергей Шебанин <sergey@shebanin.ru>, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Разрешенные сотрудники"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Кассир"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Изменить кассира"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Конфигурационные настройки"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Сотрудник"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Сотрудник: %s - PoS Config(s): %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Неверный пароль"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Войдите в систему"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Пароль ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Лицо, использующее кассовый аппарат. Это может быть питчер, ученик или "
"временный работник."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Конфигурация точки продаж"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Заказы точки продажи"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Отчет заказов точки продаж"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Смена"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Государственный служащий"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Сканировать свой бейдж"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Выберите кассира"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Вы не можете удалить сотрудника, который может быть использован в активной "
"сессии PoS, сначала закройте сессию(и):\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "или"

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
# Martin Trigaux, 2022
# Wil Odoo, 2025
# Tomáš Píšek, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Povolení zamestnanci"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Pokladník"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Zmeniť pokladníka"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Nastavenia konfigurácie"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Zamestnanec"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Zamestnanec: %s - PoS Config(s): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Zamestnanci s prístupom"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Ak zostanú prázdne, všetci zamestnanci sa môžu prihlásiť do relácie PoS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Nesprávne heslo"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Prihlásiť sa"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Heslo ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Osoba ktorá používa pokladnicu. Môže to by výpomoc, študent alebo dočasný "
"zamestnanec."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Konfigurácia miesta predaja"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Objednávky miesta predaja"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Report objednávok miesta predaja"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Relácia miesta predaja"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Verejný zamestnanec"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Zosnímaj kartu"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Výber pokladníka"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Nemôžete vymazať zamestnanca, ktorý môže byť použitý v aktívnej relácii PoS,"
" najskôr zatvorte reláciu:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "alebo"

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Grega Vavtar <grega@hbs.si>, 2022
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
# Jasmina Macur <jasmina@hbs.si>, 2022
# Tadej Lupšina <tadej@hbs.si>, 2022
# Martin Trigaux, 2022
# Katja Deržič, 2024
# Aleš Pipan, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Aleš Pipan, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Prodajalec"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Spremeni prodajalca"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Uredi nastavitve"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Kader"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Napačno geslo"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Prijava v"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Geslo ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Nastavitve POS-blagajne"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Naročila POS"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Seja POS"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Javni uslužbenec"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skenirajte svojo značko"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Izberi prodajalca"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Ne morete izbrisati zaposlenega, ki se lahko uporablja v aktivni seji PoS, "
"najprej zaprite sejo(-e): \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ali"

View file

@ -0,0 +1,146 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,161 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
# コフスタジオ, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: コフスタジオ, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Allowed Employees"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Cashier"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Change Cashier"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Podešavanje konfiguracije"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Zaposleni"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Employee: %s - PoS Config(s): %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Incorrect Password"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Log in to"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Podešavanje POS terminala mesta prodaje"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Point of Sale Orders"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Point of Sale Orders Report"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Sesija prodajnog mesta"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Public Employee"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Scan your badge"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Select Cashier"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "ili"

View file

@ -0,0 +1,164 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
# Simon S, 2022
# Kim Asplund <kim.asplund@gmail.com>, 2022
# Martin Trigaux, 2022
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2024
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Tillåtna Anställda"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kassör"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Byt Kassör"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Inställningar"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Anställd"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Användare: %s - Kassa Configurering: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Användare med behörighet"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Om tomt, alla användare kan logga in i kassa sessionen"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Felaktigt lösenord"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Logga in i"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Lösenord ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Person som använder kassan. Det kan vara en avbytare, en student eller en "
"tillfällig anställd."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Kassakonfigurering"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Kassaorder"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Kassa Order Raport"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Kassasession"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Offentliganställd"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Skanna din bricka"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Välj kassör"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Du kan inte radera en användare som kan använda en aktiv kassa session, "
"stäng sessionen först\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "eller"

View file

@ -0,0 +1,146 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,146 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:32+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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr ""
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr ""
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr ""
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr ""

View file

@ -0,0 +1,162 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2022
# Martin Trigaux, 2022
# Wichanon Jamwutthipreecha, 2022
# Rasareeyar Lappiam, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "พนักงานที่ได้รับอนุญาต"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "แคชเชียร์"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "เปลี่ยนแคชเชียร์"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "ตั้งค่าการกำหนดค่า"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "พนักงาน"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "พนักงาน: %s - กำหนดค่า PoS: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "พนักงานที่มีสิทธิ์เข้าถึง"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "หากเว้นว่างไว้ พนักงานทุกคนสามารถเข้าสู่ระบบเซสชั่น PoS ได้"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "รหัสผ่านไม่ถูกต้อง"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "เข้าสู่ระบบ"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "รหัสผ่าน?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"ผู้ที่ใช้เครื่องบันทึกเงินสด อาจเป็นผู้ช่วยเหลือ นักศึกษา "
"หรือลูกจ้างชั่วคราว"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "กำหนดค่าการขายหน้าร้าน"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "คำสั่งขายหน้าร้าน"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "รายงานคำสั่งขายหน้าร้าน"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "เซสชั่นการขายหน้าร้าน"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "ข้าราชการ"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "สแกนป้ายของคุณ"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "เลือกแคชเชียร์"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"คุณไม่สามารถลบพนักงานที่อาจใช้ในเซสชั่น PoS ที่ใช้งานอยู่ ปิดเซสชั่นก่อน:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "หรือ"

View file

@ -0,0 +1,165 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# abc Def <hdogan1974@gmail.com>, 2022
# Ramiz Deniz Öner <deniz@denizoner.com>, 2022
# Martin Trigaux, 2022
# Levent Karakaş <levent@mektup.at>, 2022
# Umur Akın <umura@projetgrup.com>, 2022
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
# Murat Kaplan <muratk@projetgrup.com>, 2022
# Halil, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "İzin Verilen Çalışanlar"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Kasiyer"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Kasiyer Değiştir"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Yapılandırma Ayarları"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Personel"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Çalışan: %s - PoS Yapılandırmaları: %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Erişimi olan çalışanlar"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Boş bırakılırsa, tüm çalışanlar PoS oturumunda oturum açabilir"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Yanlış Parola"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Giriş yap"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Parola ?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "Nakit kasa kullanan kişi. Bu bir öğrenci yada bir personel olabilir."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Satış Noktası Yapılandırması"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Satış Noktası Siparişi"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Satış Noktası Siparişleri Raporu"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Satış Noktası Oturumu"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Herkese Açık Personel"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Rozetinizi Tarayın"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Kasiyer Seç"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Etkin bir PoS oturumunda kullanılabilecek bir çalışanı silemezsiniz, önce "
"oturumları kapatın: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "veya"

View file

@ -0,0 +1,163 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Дозволені співробітники"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Касир"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Змінити касира"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Налаштування"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Співробітник"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Співробітник: %s - Налашт. точки продажу: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Співробітники з правом доступу"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr ""
"Якщо залишити порожнім, всі співробітники можуть увійти до сесії точки "
"продажу"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Невірний пароль"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Увійдіть в"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Пароль?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Особа, яка використовує касовий апарат. Це може бути стажер, студент або "
"тимчасовий працівник."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Налаштування точки продажу"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Замовлення точки продажу"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Звіт замовлень точки продажу"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Сесія точки продажу"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Зовнішній користувач"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Відскануйте ваш значок"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Оберіть касира"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Ви не можете видалити співробітника, який може бути задіяним в активній "
"сесії точки продажу, спершу закрийте сесію: \n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "або"

View file

@ -0,0 +1,161 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Thi Huong Nguyen, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "Nhân viên được phép"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "Thu ngân"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "Đổi thu ngân"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "Cài đặt cấu hình"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "Nhân viên"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "Nhân viên: %s - Cấu hình PoS: %s \n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "Nhân viên có quyền truy cập"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "Nếu để trống, tất cả nhân viên đều có thể đăng nhập vào phiên PoS"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "Mật khẩu không chính xác"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "Đăng nhập "
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "Mật khẩu?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr ""
"Người sử dụng máy tính tiền. Đây có thể là người hỗ trợ, sinh viên hoặc nhân"
" viên thời vụ."
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "Cấu hình điểm bán lẻ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "Đơn hàng điểm bán lẻ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "Báo cáo đơn hàng điểm bán lẻ"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "Phiên POS"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "Nhân viên chung"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "Quét thẻ nhân viên"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "Chọn thu ngân"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr ""
"Bạn không thể xóa nhân viên có thể được sử dụng trong một phiên POS đang "
"hoạt động, trước tiên hãy đóng (các) phiên:\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "hoặc"

View file

@ -0,0 +1,158 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Jeffery CHEN <jeffery9@gmail.com>, 2022
# Raymond Yu <cl_yu@hotmail.com>, 2022
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\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_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "允许的员工"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "收银员"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "更换收银员"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "配置设置"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "员工"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "员工:%s- PoS配置多个%s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "有权访问的员工"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "如果保留为空则所有员工都可以登录PoS会话"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "密码错误"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "登录到"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "密码?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "使用收银机的人可以是救援者,学生或者临时工"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "POS配置"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "POS订单"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "销售网点订单报告"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "POS会话"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "公共员工"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "扫描您的徽标"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "选择收银员"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr "您无法删除可能在启用PoS会话中使用的员工请先关闭会话\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "或"

View file

@ -0,0 +1,157 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_hr
#
# Translators:
# Martin Trigaux, 2022
# Tony Ng, 2023
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
"Last-Translator: Wil Odoo, 2025\n"
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: pos_hr
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_config_form_view_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.res_config_settings_view_form
msgid "Allowed Employees"
msgstr "允許的員工"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__cashier
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_form_inherit
#: model_terms:ir.ui.view,arch_db:pos_hr.pos_order_list_select_inherit
msgid "Cashier"
msgstr "收銀員"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Change Cashier"
msgstr "更換收銀員"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_res_config_settings
msgid "Config Settings"
msgstr "配置設定"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee
#: model:ir.model.fields,field_description:pos_hr.field_pos_order__employee_id
#: model:ir.model.fields,field_description:pos_hr.field_report_pos_order__employee_id
#: model_terms:ir.ui.view,arch_db:pos_hr.view_report_pos_order_search_inherit
msgid "Employee"
msgstr "員工"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid "Employee: %s - PoS Config(s): %s \n"
msgstr "員工: %s - PoS設定: %s\n"
#. module: pos_hr
#: model:ir.model.fields,field_description:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,field_description:pos_hr.field_res_config_settings__pos_employee_ids
msgid "Employees with access"
msgstr "具有存取許可權的員工"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_config__employee_ids
#: model:ir.model.fields,help:pos_hr.field_res_config_settings__pos_employee_ids
msgid "If left empty, all employees can log in to the PoS session"
msgstr "如果留空,所有員工都可以登入到 PoS營業點"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Incorrect Password"
msgstr "密碼錯誤"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Log in to"
msgstr "登入到"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/js/SelectCashierMixin.js:0
#, python-format
msgid "Password ?"
msgstr "密碼?"
#. module: pos_hr
#: model:ir.model.fields,help:pos_hr.field_pos_order__employee_id
msgid ""
"Person who uses the cash register. It can be a reliever, a student or an "
"interim employee."
msgstr "使用收銀機的人可以是支援人員、工讀生或者兼職工作者。"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_config
msgid "Point of Sale Configuration"
msgstr "POS設定"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_order
msgid "Point of Sale Orders"
msgstr "POS訂單"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_report_pos_order
msgid "Point of Sale Orders Report"
msgstr "POS銷售訂單報告"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_pos_session
msgid "Point of Sale Session"
msgstr "POS 操作時段"
#. module: pos_hr
#: model:ir.model,name:pos_hr.model_hr_employee_public
msgid "Public Employee"
msgstr "公開員工"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Scan your badge"
msgstr "掃瞄您的工作識別證"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "Select Cashier"
msgstr "選擇收銀員"
#. module: pos_hr
#. odoo-python
#: code:addons/pos_hr/models/hr_employee.py:0
#, python-format
msgid ""
"You cannot delete an employee that may be used in an active PoS session, "
"close the session(s) first: \n"
msgstr "您不能刪除可能在開啟PoS營業點中使用的員工請先關閉POS營業點\n"
#. module: pos_hr
#. odoo-javascript
#: code:addons/pos_hr/static/src/xml/LoginScreen.xml:0
#, python-format
msgid "or"
msgstr "或"

View file

@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from . import pos_config
from . import pos_order
from . import hr_employee
from . import hr_employee_public
from . import pos_session
from . import res_config_settings

View file

@ -0,0 +1,37 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import hashlib
from odoo import api, models, _
from odoo.exceptions import UserError
class HrEmployee(models.Model):
_inherit = 'hr.employee'
def get_barcodes_and_pin_hashed(self):
if not self.env.user.has_group('point_of_sale.group_pos_user'):
return []
# Apply visibility filters (record rules)
visible_emp_ids = self.search([('id', 'in', self.ids)])
employees_data = self.sudo().search_read([('id', 'in', visible_emp_ids.ids)], ['barcode', 'pin'])
for e in employees_data:
e['barcode'] = hashlib.sha1(e['barcode'].encode('utf8')).hexdigest() if e['barcode'] else False
e['pin'] = hashlib.sha1(e['pin'].encode('utf8')).hexdigest() if e['pin'] else False
return employees_data
@api.ondelete(at_uninstall=False)
def _unlink_except_active_pos_session(self):
configs_with_employees = self.env['pos.config'].sudo().search([('module_pos_hr', '=', 'True')]).filtered(lambda c: c.current_session_id)
configs_with_all_employees = configs_with_employees.filtered(lambda c: not c.employee_ids)
configs_with_specific_employees = configs_with_employees.filtered(lambda c: c.employee_ids & self)
if configs_with_all_employees or configs_with_specific_employees:
error_msg = _("You cannot delete an employee that may be used in an active PoS session, close the session(s) first: \n")
for employee in self:
config_ids = configs_with_all_employees | configs_with_specific_employees.filtered(lambda c: employee in c.employee_ids)
if config_ids:
error_msg += _("Employee: %s - PoS Config(s): %s \n") % (employee.name, ', '.join(config.name for config in config_ids))
raise UserError(error_msg)

View file

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class HrEmployeePublic(models.Model):
_inherit = "hr.employee.public"
def read(self, fields=None, load='_classic_read'):
# as `pos_blackbox_be` is a certified module, it's hard to make fixes in it
# so this is a workaround to remove `insz_or_bis_number` field from the fields list
# as the parent hr.employee model will attempt to read it from hr.employee.public
# where it doesn't exist
if fields and 'insz_or_bis_number' in fields:
pos_blackbox_be_installed = self.env['ir.module.module'].sudo().search_count([('name', '=', 'pos_blackbox_be'), ('state', '=', 'installed')])
has_hr_user_group = self.env.user.has_group('hr.group_hr_user')
if pos_blackbox_be_installed and not has_hr_user_group:
fields.remove('insz_or_bis_number')
return super().read(fields=fields, load=load)

View file

@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
from functools import partial
from odoo import models, fields
class PosConfig(models.Model):
_inherit = 'pos.config'
employee_ids = fields.Many2many(
'hr.employee', string="Employees with access",
help='If left empty, all employees can log in to the PoS session')

View file

@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
from odoo import models, fields, api
class PosOrder(models.Model):
_inherit = "pos.order"
employee_id = fields.Many2one('hr.employee', help="Person who uses the cash register. It can be a reliever, a student or an interim employee.", states={'done': [('readonly', True)], 'invoiced': [('readonly', True)]})
cashier = fields.Char(string="Cashier", compute="_compute_cashier", store=True)
@api.model
def _order_fields(self, ui_order):
order_fields = super(PosOrder, self)._order_fields(ui_order)
order_fields['employee_id'] = ui_order.get('employee_id')
return order_fields
@api.depends('employee_id', 'user_id')
def _compute_cashier(self):
for order in self:
if order.employee_id:
order.cashier = order.employee_id.name
else:
order.cashier = order.user_id.name
def _export_for_ui(self, order):
result = super(PosOrder, self)._export_for_ui(order)
result.update({
'employee_id': order.employee_id.id,
})
return result

View file

@ -0,0 +1,43 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class PosSession(models.Model):
_inherit = 'pos.session'
def _pos_data_process(self, loaded_data):
super()._pos_data_process(loaded_data)
if self.config_id.module_pos_hr:
loaded_data['employee_by_id'] = {employee['id']: employee for employee in loaded_data['hr.employee']}
def _pos_ui_models_to_load(self):
result = super()._pos_ui_models_to_load()
if self.config_id.module_pos_hr:
new_model = 'hr.employee'
if new_model not in result:
result.append(new_model)
return result
def _loader_params_hr_employee(self):
if len(self.config_id.employee_ids) > 0:
domain = ['&', ('company_id', '=', self.config_id.company_id.id), '|', ('user_id', '=', self.user_id.id), ('id', 'in', self.config_id.employee_ids.ids)]
else:
domain = [('company_id', '=', self.config_id.company_id.id)]
return {'search_params': {'domain': domain, 'fields': ['name', 'id', 'user_id'], 'load': False}}
def _get_pos_ui_hr_employee(self, params):
employees = self.env['hr.employee'].search_read(**params['search_params'])
employee_ids = [employee['id'] for employee in employees]
user_ids = [employee['user_id'] for employee in employees if employee['user_id']]
manager_ids = self.env['res.users'].browse(user_ids).filtered(lambda user: self.config_id.group_pos_manager_id in user.groups_id).mapped('id')
employees_barcode_pin = self.env['hr.employee'].browse(employee_ids).get_barcodes_and_pin_hashed()
bp_per_employee_id = {bp_e['id']: bp_e for bp_e in employees_barcode_pin}
for employee in employees:
employee['role'] = 'manager' if employee['user_id'] and employee['user_id'] in manager_ids else 'cashier'
employee['barcode'] = bp_per_employee_id[employee['id']]['barcode']
employee['pin'] = bp_per_employee_id[employee['id']]['pin']
return employees

View file

@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'
# pos.config fields
pos_employee_ids = fields.Many2many(related='pos_config_id.employee_ids', readonly=False)

View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from . import pos_order_report

View file

@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
from functools import partial
from odoo import models, fields
class PosOrderReport(models.Model):
_inherit = "report.pos.order"
employee_id = fields.Many2one(
'hr.employee', string='Employee', readonly=True)
def _select(self):
return super(PosOrderReport, self)._select() + ',s.employee_id AS employee_id'
def _group_by(self):
return super(PosOrderReport, self)._group_by() + ',s.employee_id'

View file

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="2000" height="1128" viewBox="0 0 2000 1128">
<polygon fill-opacity=".03" points="0 1077.844 392.627 778.443 1504.99 1127.745 0 1127.745"/>
<polygon fill-opacity=".02" points="392.216 778.443 283.294 0 0 0 0 666.504"/>
<polygon fill-opacity=".03" points="1000 0 2000 1009.98 2000 439.94 1749.817 0"/>
</svg>

After

Width:  |  Height:  |  Size: 366 B

View file

@ -0,0 +1,127 @@
.pos .login-overlay{
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height:100%;
z-index:1000;
background: linear-gradient(to right bottom, #77717e, #c9a8a9);
}
.pos .login-overlay:before {
content: '';
background-image: url(../../img/login-bg-overlay.svg);
background-color: rgba(0, 0, 0, 0.3);
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height:100%;
}
.pos .screen-login{
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
margin: auto;
max-width: 550px;
width:100%;
height:300px;
text-align:center;
font-size:20px;
font-weight:bold;
background-color: #F0EEEE;
border-radius: 3px;
z-index:1200;
font-family: 'Lato';
}
.pos .login-title{
height: 40%;
vertical-align: middle;
line-height: 5;
font-size: larger;
}
.pos .login-body{
display: flex;
justify-content: center;
height:37%;
}
.pos .login-footer{
height:18%;
}
.pos .login-element{
float: left;
width: 40%;
height: 60%;
}
.pos .login-barcode-img{
width: 80px;
height: 55px;
background: white;
border: 0px;
}
.pos .login-barcode-text{
color: #999999;
font-size: 13px;
padding-top: 0.2em;
}
.pos .login-or{
font-size: 15px;
font-style: italic;
float: left;
width: 10%;
height: 100%;
line-height: 5;
}
.pos .login-button{
font-size: initial;
height: 100%;
color: #555555;
border-radius: 5px;
}
@media screen and (max-width: 576px) {
.pos .screen-login {
font-family: 'Lato', sans-serif;
width: 100%;
height: 100%;
text-align: center;
background-color: #fff;
overflow: hidden;
}
.pos .login-body {
flex-direction: column;
align-items: center;
}
.pos .login-button {
color: #fff;
background-color: #00A09D;
border-color: #00A09D;
height: 38px;
}
.pos .login-barcode-text {
color: #adb5bd;
margin-top: 8px;
margin-bottom: 0;
font-size: 15px;
font-weight: 400;
line-height: 1.2;
}
.pos .login-element .o_barcode_mobile_container .o_mobile_barcode {
top:0;
height: 55px;
}
}
.pos .pos-rightheader .header-button.lock-button {
font-size: 20px;
color: rgb(94, 185, 55);
transition: all 200ms ease-in-out;
width: 18px;
}
.pos .pos-rightheader .header-button.lock-button:hover {
color: rgb(197, 52, 0);
}

View file

@ -0,0 +1,31 @@
odoo.define('pos_hr.CashierName', function (require) {
'use strict';
const CashierName = require('point_of_sale.CashierName');
const Registries = require('point_of_sale.Registries');
const SelectCashierMixin = require('pos_hr.SelectCashierMixin');
const { useBarcodeReader } = require('point_of_sale.custom_hooks');
const PosHrCashierName = (CashierName) =>
class extends SelectCashierMixin(CashierName) {
setup() {
super.setup();
useBarcodeReader({ cashier: this.barcodeCashierAction });
}
//@Override
get avatar() {
if (this.env.pos.config.module_pos_hr) {
const cashier = this.env.pos.get_cashier();
if (!(cashier && cashier.id)) {
return '';
}
return `/web/image/hr.employee.public/${cashier.id}/avatar_128`;
}
return super.avatar;
}
};
Registries.Component.extend(CashierName, PosHrCashierName);
return CashierName;
});

View file

@ -0,0 +1,30 @@
odoo.define('pos_hr.chrome', function (require) {
'use strict';
const Chrome = require('point_of_sale.Chrome');
const Registries = require('point_of_sale.Registries');
const PosHrChrome = (Chrome) =>
class extends Chrome {
async start() {
await super.start();
if (this.env.pos.config.module_pos_hr) this.showTempScreen('LoginScreen');
}
get headerButtonIsShown() {
return !this.env.pos.config.module_pos_hr || this.env.pos.get_cashier().role == 'manager' || this.env.pos.get_cashier_user_id() === this.env.pos.user.id;
}
showCashMoveButton() {
return super.showCashMoveButton() && (!this.env.pos.cashier || this.env.pos.cashier.role == 'manager');
}
shouldShowCashControl() {
if (this.env.pos.config.module_pos_hr){
return super.shouldShowCashControl() && this.env.pos.hasLoggedIn;
}
return super.shouldShowCashControl();
}
};
Registries.Component.extend(Chrome, PosHrChrome);
return Chrome;
});

View file

@ -0,0 +1,28 @@
odoo.define('point_of_sale.HeaderLockButton', function(require) {
'use strict';
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
const { useState } = owl;
class HeaderLockButton extends PosComponent {
setup() {
super.setup();
this.state = useState({ isUnlockIcon: true, title: 'Unlocked' });
}
async showLoginScreen() {
this.env.pos.reset_cashier();
await this.showTempScreen('LoginScreen');
}
onMouseOver(isMouseOver) {
this.state.isUnlockIcon = !isMouseOver;
this.state.title = isMouseOver ? 'Lock' : 'Unlocked';
}
}
HeaderLockButton.template = "HeaderLockButton";
Registries.Component.add(HeaderLockButton);
return HeaderLockButton;
});

View file

@ -0,0 +1,43 @@
odoo.define('pos_hr.LoginScreen', function (require) {
'use strict';
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
const SelectCashierMixin = require('pos_hr.SelectCashierMixin');
const { useBarcodeReader } = require('point_of_sale.custom_hooks');
class LoginScreen extends SelectCashierMixin(PosComponent) {
setup() {
super.setup();
useBarcodeReader({cashier: this.barcodeCashierAction}, true);
}
async selectCashier() {
if (await super.selectCashier()) {
this.back();
}
}
async barcodeCashierAction(code) {
if (await super.barcodeCashierAction(code) && this.env.pos.get_cashier().id) {
this.back();
}
}
back() {
this.props.resolve({ confirmed: false, payload: false });
this.trigger('close-temp-screen');
this.env.pos.hasLoggedIn = true;
this.env.posbus.trigger('start-cash-control');
}
confirm() {
this.props.resolve({ confirmed: true, payload: true });
this.trigger('close-temp-screen');
}
get shopName() {
return this.env.pos.config.name;
}
}
LoginScreen.template = 'LoginScreen';
Registries.Component.add(LoginScreen);
return LoginScreen;
});

View file

@ -0,0 +1,18 @@
odoo.define('pos_hr.PaymentScreen', function (require) {
'use strict';
const PaymentScreen = require('point_of_sale.PaymentScreen');
const Registries = require('point_of_sale.Registries');
const PosHrPaymentScreen = (PaymentScreen_) =>
class extends PaymentScreen_ {
async _finalizeValidation() {
this.currentOrder.cashier = this.env.pos.get_cashier();
await super._finalizeValidation();
}
};
Registries.Component.extend(PaymentScreen, PosHrPaymentScreen);
return PaymentScreen;
});

View file

@ -0,0 +1,71 @@
/* global Sha1 */
odoo.define('pos_hr.SelectCashierMixin', function (require) {
'use strict';
const SelectCashierMixin = (PosComponent) => class ComponentWithSelectCashierMixin extends PosComponent {
async askPin(employee) {
const { confirmed, payload: inputPin } = await this.showPopup('NumberPopup', {
isPassword: true,
title: this.env._t('Password ?'),
startingValue: null,
});
if (!confirmed) return;
if (employee.pin === Sha1.hash(inputPin)) {
return employee;
} else {
await this.showPopup('ErrorPopup', {
title: this.env._t('Incorrect Password'),
});
return;
}
}
/**
* Select a cashier, the returning value will either be an object or nothing (undefined)
*/
async selectCashier() {
if (this.env.pos.config.module_pos_hr) {
const employeesList = this.env.pos.employees
.filter((employee) => employee.id !== this.env.pos.get_cashier().id)
.map((employee) => {
return {
id: employee.id,
item: employee,
label: employee.name,
isSelected: false,
};
});
let {confirmed, payload: employee} = await this.showPopup('SelectionPopup', {
title: this.env._t('Change Cashier'),
list: employeesList,
});
if (!confirmed) {
return;
}
if (employee && employee.pin) {
employee = await this.askPin(employee);
}
if (employee) {
this.env.pos.set_cashier(employee);
}
return employee;
}
}
async barcodeCashierAction(code) {
const employee = this.env.pos.employees.find(
(emp) => emp.barcode === Sha1.hash(code.code)
);
if (employee && employee !== this.env.pos.get_cashier() && (!employee.pin || (await this.askPin(employee)))) {
this.env.pos.set_cashier(employee);
}
return employee;
}
}
return SelectCashierMixin;
});

View file

@ -0,0 +1,82 @@
odoo.define('pos_hr.employees', function (require) {
"use strict";
var { PosGlobalState, Order } = require('point_of_sale.models');
const Registries = require('point_of_sale.Registries');
const PosHrPosGlobalState = (PosGlobalState) => class PosHrPosGlobalState extends PosGlobalState {
async _processData(loadedData) {
await super._processData(...arguments);
if (this.config.module_pos_hr) {
this.employees = loadedData['hr.employee'];
this.employee_by_id = loadedData['employee_by_id'];
this.reset_cashier();
}
}
async after_load_server_data() {
await super.after_load_server_data(...arguments);
if (this.config.module_pos_hr) {
this.hasLoggedIn = !this.config.module_pos_hr;
}
}
reset_cashier() {
this.cashier = {name: null, id: null, barcode: null, user_id: null, pin: null, role: null};
}
set_cashier(employee) {
this.cashier = employee;
const selectedOrder = this.get_order();
if (selectedOrder && !selectedOrder.get_orderlines().length) {
// Order without lines can be considered to be un-owned by any employee.
// We set the cashier on that order to the currently set employee.
selectedOrder.cashier = employee;
}
if (!this.cashierHasPriceControlRights() && this.numpadMode === 'price') {
this.numpadMode = 'quantity';
}
}
/**{name: null, id: null, barcode: null, user_id:null, pin:null}
* If pos_hr is activated, return {name: string, id: int, barcode: string, pin: string, user_id: int}
* @returns {null|*}
*/
get_cashier() {
if (this.config.module_pos_hr) {
return this.cashier;
}
return super.get_cashier();
}
get_cashier_user_id() {
if (this.config.module_pos_hr) {
return this.cashier.user_id ? this.cashier.user_id : null;
}
return super.get_cashier_user_id();
}
}
Registries.Model.extend(PosGlobalState, PosHrPosGlobalState);
const PosHrOrder = (Order) => class PosHrOrder extends Order {
constructor(obj, options) {
super(...arguments);
if (!options.json && this.pos.config.module_pos_hr) {
this.cashier = this.pos.get_cashier();
}
}
init_from_JSON(json) {
super.init_from_JSON(...arguments);
if (this.pos.config.module_pos_hr && json.employee_id) {
this.cashier = this.pos.employee_by_id[json.employee_id];
}
}
export_as_JSON() {
const json = super.export_as_JSON(...arguments);
if (this.pos.config.module_pos_hr) {
json.employee_id = this.cashier ? this.cashier.id : false;
}
return json;
}
}
Registries.Model.extend(Order, PosHrOrder);
});

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-name="CashierName" t-inherit="point_of_sale.CashierName" t-inherit-mode="extension" owl="1">
<xpath expr="//div" position="attributes">
<attribute name="t-on-click">selectCashier</attribute>
</xpath>
</t>
</templates>

View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-name="Chrome" t-inherit="point_of_sale.Chrome" t-inherit-mode="extension" owl="1">
<xpath expr="//HeaderButton" position="replace">
<HeaderLockButton t-if="env.pos.config.module_pos_hr" />
<HeaderButton t-if="headerButtonIsShown" />
</xpath>
</t>
</templates>

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-name="HeaderLockButton" owl="1">
<div class="header-button lock-button" t-on-mouseover="() => this.onMouseOver(true)"
t-on-click="showLoginScreen" t-on-mouseout="() => this.onMouseOver(false)">
<span class="lock-button">
<i class="fa"
t-att-class="{ 'fa-unlock': state.isUnlockIcon, 'fa-lock': !state.isUnlockIcon }"
role="img" t-att-aria-label="state.title" t-att-title="state.title"></i>
</span>
</div>
</t>
</templates>

View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-name="LoginScreen" owl="1">
<div class="login-overlay">
<div class="screen-login">
<div class="login-title"><small>Log in to </small>
<t t-esc="shopName" />
</div>
<div class="login-body">
<span class="login-element">
<img class="login-barcode-img"
src="/point_of_sale/static/img/barcode.png" />
<div class="login-barcode-text">Scan your badge</div>
</span>
<span class="login-or">or</span>
<span class="login-element">
<button class="login-button select-cashier"
t-on-click="selectCashier">Select Cashier</button>
</span>
</div>
</div>
</div>
</t>
</templates>

View file

@ -0,0 +1,84 @@
odoo.define('point_of_sale.tour.PosHr', function (require) {
'use strict';
const { PosHr } = require('pos_hr.tour.PosHrTourMethods');
const { ProductScreen } = require('point_of_sale.tour.ProductScreenTourMethods');
const { TicketScreen } = require('point_of_sale.tour.TicketScreenTourMethods');
const { Chrome } = require('point_of_sale.tour.ChromeTourMethods');
const { ErrorPopup } = require('point_of_sale.tour.ErrorPopupTourMethods');
const { NumberPopup } = require('point_of_sale.tour.NumberPopupTourMethods');
const { SelectionPopup } = require('point_of_sale.tour.SelectionPopupTourMethods');
const { getSteps, startSteps } = require('point_of_sale.tour.utils');
const Tour = require('web_tour.tour');
startSteps();
PosHr.check.loginScreenIsShown();
PosHr.do.clickLoginButton();
SelectionPopup.check.isShown();
SelectionPopup.check.hasSelectionItem('Pos Employee1');
SelectionPopup.check.hasSelectionItem('Pos Employee2');
SelectionPopup.check.hasSelectionItem('Mitchell Admin');
SelectionPopup.do.clickItem('Pos Employee1');
NumberPopup.check.isShown();
NumberPopup.do.pressNumpad('2 5');
NumberPopup.check.inputShownIs('••');
NumberPopup.do.pressNumpad('8 1');
NumberPopup.check.inputShownIs('••••');
NumberPopup.do.clickConfirm();
ErrorPopup.check.isShown();
ErrorPopup.do.clickConfirm();
PosHr.do.clickLoginButton();
SelectionPopup.do.clickItem('Pos Employee1');
NumberPopup.check.isShown();
NumberPopup.do.pressNumpad('2 5');
NumberPopup.check.inputShownIs('••');
NumberPopup.do.pressNumpad('8 0');
NumberPopup.check.inputShownIs('••••');
NumberPopup.do.clickConfirm();
ProductScreen.check.isShown();
ProductScreen.do.confirmOpeningPopup();
PosHr.check.cashierNameIs('Pos Employee1');
PosHr.do.clickCashierName();
SelectionPopup.do.clickItem('Mitchell Admin');
PosHr.check.cashierNameIs('Mitchell Admin');
PosHr.do.clickLockButton();
PosHr.do.clickLoginButton();
SelectionPopup.do.clickItem('Pos Employee2');
NumberPopup.do.pressNumpad('1 2');
NumberPopup.check.inputShownIs('••');
NumberPopup.do.pressNumpad('3 4');
NumberPopup.check.inputShownIs('••••');
NumberPopup.do.clickConfirm();
ProductScreen.check.isShown();
ProductScreen.do.clickHomeCategory();
// Create orders and check if the ticket list has the right employee for each order
// order for employee 2
ProductScreen.exec.addOrderline('Desk Pad', '1', '2');
ProductScreen.check.totalAmountIs('2.0')
Chrome.do.clickTicketButton();
TicketScreen.check.nthRowContains(2, 'Pos Employee2');
// order for employee 1
PosHr.do.clickLockButton();
PosHr.exec.login('Pos Employee1', '2580');
TicketScreen.do.clickNewTicket();
ProductScreen.exec.addOrderline('Desk Pad', '1', '4');
ProductScreen.check.totalAmountIs('4.0')
Chrome.do.clickTicketButton();
TicketScreen.check.nthRowContains(2, 'Pos Employee2');
TicketScreen.check.nthRowContains(3, 'Pos Employee1');
// order for admin
PosHr.do.clickCashierName();
SelectionPopup.do.clickItem('Mitchell Admin');
PosHr.check.cashierNameIs('Mitchell Admin');
TicketScreen.do.clickNewTicket();
ProductScreen.exec.addOrderline('Desk Pad', '1', '8');
ProductScreen.check.totalAmountIs('8.0')
Chrome.do.clickTicketButton();
TicketScreen.check.nthRowContains(4, 'Mitchell Admin');
Tour.register('PosHrTour', { test: true, url: '/pos/ui' }, getSteps());
});

View file

@ -0,0 +1,67 @@
odoo.define('pos_hr.tour.PosHrTourMethods', function (require) {
'use strict';
const { createTourMethods } = require('point_of_sale.tour.utils');
const { SelectionPopup } = require('point_of_sale.tour.SelectionPopupTourMethods');
const { NumberPopup } = require('point_of_sale.tour.NumberPopupTourMethods');
class Do {
clickLoginButton() {
return [
{
content: 'click login button',
trigger: '.login-overlay .login-button.select-cashier',
},
];
}
clickLockButton() {
return [
{
content: 'click lock button',
trigger: '.header-button .lock-button',
},
];
}
clickCashierName() {
return [
{
content: 'click cashier name',
trigger: '.oe_status .username',
}
]
}
}
class Check {
loginScreenIsShown() {
return [
{
content: 'login screen is shown',
trigger: '.login-overlay .screen-login .login-body',
run: () => {},
},
];
}
cashierNameIs(name) {
return [
{
content: `logged cashier is '${name}'`,
trigger: `.pos .oe_status .username:contains("${name}")`,
run: () => {},
},
];
}
}
class Execute {
login(name, pin) {
const res = this._do.clickLoginButton();
res.push(...SelectionPopup._do.clickItem(name));
if (pin) {
res.push(...NumberPopup._do.pressNumpad(pin.split('').join(' ')));
res.push(...NumberPopup._do.clickConfirm());
}
return res;
}
}
return createTourMethods('PosHr', Do, Check, Execute);
});

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import test_frontend

View file

@ -0,0 +1,63 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import Command
from odoo.tests import tagged, new_test_user
from odoo.addons.point_of_sale.tests.test_frontend import TestPointOfSaleHttpCommon
class TestPosHrHttpCommon(TestPointOfSaleHttpCommon):
@classmethod
def setUpClass(cls, chart_template_ref=None):
super().setUpClass(chart_template_ref=chart_template_ref)
cls.env.user.groups_id += cls.env.ref('hr.group_hr_user')
cls.main_pos_config.write({"module_pos_hr": True})
# Admin employee
admin = cls.env.ref("hr.employee_admin").sudo().copy({
"company_id": cls.env.company.id,
"user_id": cls.env.user.id,
"name": "Mitchell Admin",
"pin": False,
})
# User employee
emp1 = cls.env['hr.employee'].create({
'name': 'Test Employee 1',
"company_id": cls.env.company.id,
})
emp1_user = new_test_user(
cls.env,
login="emp1_user",
groups="base.group_user",
name="Pos Employee1",
email="emp1_user@pos.com",
)
emp1.write({"name": "Pos Employee1", "pin": "2580", "user_id": emp1_user.id})
# Non-user employee
emp2 = cls.env['hr.employee'].create({
'name': 'Test Employee 2',
"company_id": cls.env.company.id,
})
emp2.write({"name": "Pos Employee2", "pin": "1234"})
(admin + emp1 + emp2).company_id = cls.env.company
cls.main_pos_config.write({
'employee_ids': [Command.link(emp1.id), Command.link(emp2.id)]
})
@tagged("post_install", "-at_install")
class TestUi(TestPosHrHttpCommon):
def test_01_pos_hr_tour(self):
# open a session, the /pos/ui controller will redirect to it
self.main_pos_config.open_ui()
self.start_tour(
"/pos/ui?config_id=%d" % self.main_pos_config.id,
"PosHrTour",
login="accountman",
)

Some files were not shown because too many files have changed in this diff Show more