mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-18 04:12:08 +02:00
Initial commit: Hr packages
This commit is contained in:
commit
62531cd146
2820 changed files with 1432848 additions and 0 deletions
50
odoo-bringout-oca-ocb-hr_org_chart/README.md
Normal file
50
odoo-bringout-oca-ocb-hr_org_chart/README.md
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# HR Org Chart
|
||||
|
||||
|
||||
Org Chart Widget for HR
|
||||
=======================
|
||||
|
||||
This module extend the employee form with a organizational chart.
|
||||
(N+1, N+2, direct subordinates)
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-hr_org_chart
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- hr
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: HR Org Chart
|
||||
- **Version**: 1.0
|
||||
- **Category**: Hidden
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `hr_org_chart`.
|
||||
|
||||
## 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
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-hr_org_chart/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-hr_org_chart/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Hr_org_chart Module - hr_org_chart
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-hr_org_chart/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-hr_org_chart/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for hr_org_chart. Configure related models, access rights, and options as needed.
|
||||
17
odoo-bringout-oca-ocb-hr_org_chart/doc/CONTROLLERS.md
Normal file
17
odoo-bringout-oca-ocb-hr_org_chart/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
5
odoo-bringout-oca-ocb-hr_org_chart/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-hr_org_chart/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [hr](../../odoo-bringout-oca-ocb-hr)
|
||||
4
odoo-bringout-oca-ocb-hr_org_chart/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-hr_org_chart/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon hr_org_chart or install in UI.
|
||||
7
odoo-bringout-oca-ocb-hr_org_chart/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-hr_org_chart/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-hr_org_chart"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-hr_org_chart"
|
||||
```
|
||||
12
odoo-bringout-oca-ocb-hr_org_chart/doc/MODELS.md
Normal file
12
odoo-bringout-oca-ocb-hr_org_chart/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in hr_org_chart.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class hr_employee_base
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-hr_org_chart/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-hr_org_chart/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: hr_org_chart. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon hr_org_chart
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-hr_org_chart/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-hr_org_chart/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-hr_org_chart/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-hr_org_chart/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-hr_org_chart/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-hr_org_chart/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon hr_org_chart
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-hr_org_chart/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-hr_org_chart/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'HR Org Chart',
|
||||
'category': 'Hidden',
|
||||
'version': '1.0',
|
||||
'description':
|
||||
"""
|
||||
Org Chart Widget for HR
|
||||
=======================
|
||||
|
||||
This module extend the employee form with a organizational chart.
|
||||
(N+1, N+2, direct subordinates)
|
||||
""",
|
||||
'depends': ['hr'],
|
||||
'auto_install': True,
|
||||
'data': [
|
||||
'views/hr_views.xml'
|
||||
],
|
||||
'assets': {
|
||||
'web._assets_primary_variables': [
|
||||
'hr_org_chart/static/src/scss/variables.scss',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'hr_org_chart/static/src/fields/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'hr_org_chart/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Binary file not shown.
|
|
@ -0,0 +1,2 @@
|
|||
# -*- coding: utf-8 -*
|
||||
from . import hr_org_chart
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,105 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.exceptions import AccessError
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class HrOrgChartController(http.Controller):
|
||||
_managers_level = 5 # FP request
|
||||
|
||||
def _check_employee(self, employee_id, **kw):
|
||||
employee_id = int(employee_id) if employee_id else False
|
||||
|
||||
if 'allowed_company_ids' in request.env.context:
|
||||
cids = request.env.context['allowed_company_ids']
|
||||
else:
|
||||
cids = [request.env.company.id]
|
||||
|
||||
Employee = request.env['hr.employee.public'].with_context(allowed_company_ids=cids)
|
||||
# check and raise
|
||||
if not Employee.check_access_rights('read', raise_exception=False):
|
||||
return request.env['hr.employee.public']
|
||||
try:
|
||||
Employee.browse(employee_id).check_access_rule('read')
|
||||
except AccessError:
|
||||
return request.env['hr.employee.public']
|
||||
else:
|
||||
return Employee.browse(employee_id)
|
||||
|
||||
def _prepare_employee_data(self, employee):
|
||||
job = employee.sudo().job_id
|
||||
return dict(
|
||||
id=employee.id,
|
||||
name=employee.name,
|
||||
link='/mail/view?model=%s&res_id=%s' % ('hr.employee.public', employee.id,),
|
||||
job_id=job.id,
|
||||
job_name=job.name or '',
|
||||
job_title=employee.job_title or '',
|
||||
direct_sub_count=len(employee.child_ids - employee),
|
||||
indirect_sub_count=employee.child_all_count,
|
||||
)
|
||||
|
||||
@http.route('/hr/get_redirect_model', type='json', auth='user')
|
||||
def get_redirect_model(self):
|
||||
if request.env['hr.employee'].check_access_rights('read', raise_exception=False):
|
||||
return 'hr.employee'
|
||||
return 'hr.employee.public'
|
||||
|
||||
@http.route('/hr/get_org_chart', type='json', auth='user')
|
||||
def get_org_chart(self, employee_id, **kw):
|
||||
employee = self._check_employee(employee_id, **kw)
|
||||
new_parent_id = request.env.context.get('new_parent_id', None)
|
||||
new_parent = self._check_employee(new_parent_id, **kw)
|
||||
if not employee: # to check
|
||||
return {
|
||||
'managers': [],
|
||||
'children': [],
|
||||
}
|
||||
|
||||
# compute employee data for org chart
|
||||
ancestors, current = request.env['hr.employee.public'].sudo(), employee.sudo()
|
||||
current_parent = new_parent if new_parent_id is not None else current.parent_id
|
||||
max_level = (request.env.context.get('max_level', None) or self._managers_level) + 1
|
||||
while current_parent and current != current_parent and employee.sudo() != current_parent and len(ancestors) < max_level:
|
||||
current = current_parent
|
||||
current_parent = current.parent_id if current != employee or not new_parent else new_parent
|
||||
if current_parent in ancestors:
|
||||
break
|
||||
else:
|
||||
ancestors += current
|
||||
|
||||
values = dict(
|
||||
self=self._prepare_employee_data(employee),
|
||||
managers=[
|
||||
self._prepare_employee_data(ancestor)
|
||||
for idx, ancestor in enumerate(ancestors)
|
||||
if idx < max_level - 1
|
||||
],
|
||||
managers_more=len(ancestors) > self._managers_level,
|
||||
children=[self._prepare_employee_data(child) for child in employee.child_ids if child != employee],
|
||||
)
|
||||
values['managers'].reverse()
|
||||
return values
|
||||
|
||||
@http.route('/hr/get_subordinates', type='json', auth='user')
|
||||
def get_subordinates(self, employee_id, subordinates_type=None, **kw):
|
||||
"""
|
||||
Get employee subordinates.
|
||||
Possible values for 'subordinates_type':
|
||||
- 'indirect'
|
||||
- 'direct'
|
||||
"""
|
||||
employee = self._check_employee(employee_id, **kw)
|
||||
if not employee: # to check
|
||||
return {}
|
||||
|
||||
if subordinates_type == 'direct':
|
||||
res = (employee.child_ids - employee).ids
|
||||
elif subordinates_type == 'indirect':
|
||||
res = (employee.subordinate_ids - employee.child_ids).ids
|
||||
else:
|
||||
res = employee.subordinate_ids.ids
|
||||
|
||||
return res
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/af.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/af.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/am.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/am.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ar.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ar.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "الموظف العادي "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "المرؤوسين المباشرين وغير المباشرين "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "المرؤوسين المباشرين "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "الموظف"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "لعرض الهيكل التنظيمي، حدد المدير لهذا الموظف ثم احفظه."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "عدد المرؤوسين غير المباشرين "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "المرؤوسين غير المباشرين "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "المزيد من المدراء "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "لا يوجد تسلسل هرمي."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "المخطط التنظيمي "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "موظف في القطاع العام"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "إعادة توجيه"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "إظهار الكل "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "المرؤوسين"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "الفريق "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "لا يوجد مدير أو مرؤوس لهذا الموظف. "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "الإجمالي"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/az.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/az.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Əsas İşçi"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Birbaşa və dolayı tabe olanlar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Birbaşa tabe olanlar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "İşçi"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Orqaniqram əldə etmək üçün, menecer təyin edin və qeydi yaddaşda saxlayın."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Dolayı tabeçilikdə olanlar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Digər inzibatçılar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Heç bir iyerarxiya mövqeyi yoxdur."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Təşkilat Qrafiki"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Dövlət Qulluqçusu"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Yönləndir"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Tabeçilikdə olanlar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Komanda"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Bu əməkdaşın nə meneceri, nə də tabeçiliyində olan şəxsi yoxdur."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Cəmi"
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/be.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/be.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
140
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/bg.po
Normal file
140
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/bg.po
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# aleksandar ivanov, 2023
|
||||
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Emil Krastev, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Emil Krastev, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Основен служител"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Директно подчинени"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Служител"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"За да получите диаграма на организацията, задайте мениджър и запазете "
|
||||
"записа."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Непреки подчинени"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Няма йерархична позиция."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Графика на организацията"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Публичен служител"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Пренасочен"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Подчинени"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Отбор"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Този служител няма мениджър или подчинен."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Общо"
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/bs.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/bs.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Obični zaposlenik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Direktni i indirektni podređeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Direktno podređeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Podređeni od %s"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "kako bi dobili organigram, postavite voditelja i snimite zapis."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Broj indirektnih podređenih"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Direktni podređeni od %s"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Više voditelja"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Nema strukturnu poziciju"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Indirektni podređeni od %s"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Javni djelatnik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmjeri"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Vidi sve"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Podređeni djelatnici"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Tim"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Ovaj djelatnik nema voditelja ili podređenih."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
138
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ca.po
Normal file
138
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ca.po
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Harcogourmet, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# marcescu, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Manel Fernandez Ramirez <manelfera@outlook.com>, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empleat bàsic"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Subordinació directa i indirecta"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordinats directes"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Empleat"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Per tal d'obtenir un organigrama, establir un gestor i salvar el registre."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Comptador de subordenades indirectes"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Subordinacions indirectes"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Més gestors"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Cap posició de jerarquia."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Diagrama d'organitzacions"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Empleat Públic"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redirigir"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Veure Tot"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordinats"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Equip"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Aquest empleat no té administrador ni subordinat."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/cs.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/cs.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Základní zaměstnanec"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Přímí a nepřímí podřízení"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Přímí podřízení"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zaměstnanec"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Abyste získali organigram, nastavte správce a záznam uložte."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Počet nepřímých podřízených"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Nepřímí podřízení"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Více manažerů"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Žádná hierarchická pozice."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organizační schéma"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Veřejný zaměstnanec"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Přesměrování"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Zobrazit vše"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Podřízení"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Tým"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Tento zaměstnanec nemá manažera ani podřízeného."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Celkem"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/da.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/da.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Standard ansat"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Direkte og indirekte underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Direkte underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Medarbejder"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"For at få vist et organisationsdiagram angiv en leder og gem rekorden."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Antal Indirekte Underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Indirekte underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Flere ledere"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Ingen hierarki."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organisationsdiagram"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Offentlig ansat"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redirect"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Vis Alle"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Team"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Denne medarbejder har ingen leder eller underordnet."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "I alt"
|
||||
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/de.po
Normal file
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/de.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Basismitarbeiter"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Direkt und indirekt untergeordnete Mitarbeiter"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Direkte Untergeordnete"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Mitarbeiter"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Um ein Organigramm zu erhalten, legen Sie einen Manager fest und speichern "
|
||||
"Sie den Datensatz."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Anzahl indirekte Untergeordnete"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Indirekte Untergeordnete"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Weitere Manager"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Keine Hierarchieposition."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organigramm"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Öffentlicher Mitarbeiter"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Umleiten"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Alle ansehen"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Untergeordnete Mitarbeiter"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Team"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Dieser Mitarbeiter hat keinen Manager oder Untergeordneten."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Gesamt"
|
||||
112
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/el.po
Normal file
112
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/el.po
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-18 09:49+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:137
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Υπάλληλος"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:147
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:66
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:155
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:140
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Σύνολο"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/es.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/es.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empleado básico"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Subordinados directos e indirectos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordinados directos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Empleado"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Establezca un gerente y guarde el registro para obtener un organigrama."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Número de subordinados indirectos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Subordinados indirectos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Más gerentes"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Sin posición jerárquica."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organigrama"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Empleado público"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redireccionar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Ver todo"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordinados"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Equipo"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Este empleado no tiene gerente ni subordinado."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/es_MX.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2024\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empleado básico"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Subordinados directos e indirectos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordinados directos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Empleado"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Establezca un gerente y guarde el registro para obtener un organigrama."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Número de subordinados indirectos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Subordinados indirectos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Más gerentes"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Sin posición jerárquica."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organigrama"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Empleado público"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redireccionar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Ver todo"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordinados"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Equipo"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Este empleado no tiene gerentes ni subordinados."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
139
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/et.po
Normal file
139
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/et.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Piia Paurson <piia@avalah.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# JanaAvalah, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: JanaAvalah, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Keskmine töötaja"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Otsesed alluvad ja mittealluvad"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Otsesed alluvad"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Töötaja"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Organisatsioonistruktuuri saamiseks määrake juht ning salvestage kirje."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Otseselt mittealluvate töötajate arv"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Kaudsed alluvad"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Rohkem juhte"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Puudub hierarhiline positsioon."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organisatsiooni struktuur"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Avalik töötaja"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Suuna ümber"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Vaata kõiki"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Alluvad"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Meeskond"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Sellel töötajal pole juhti ega ka alluvat."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Kokku"
|
||||
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/eu.po
Normal file
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/eu.po
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
138
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fa.po
Normal file
138
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fa.po
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# F Hariri <fhari1234@gmail.com>, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Hanna Kheradroosta, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "کارمند پایه"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "زیردستان مستقیم و غیر مستقیم"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "زیردستان مستقیم"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "کارمند"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"برای به دست آوردن یک ارگانیگرام، یک مدیر تنظیم کنید و رکورد را ذخیره کنید."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "تعداد زیردستان غیر مستقیم"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "زیردستان غیر مستقیم"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "مدیران بیشتر"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "بدون موقعیت سلسله مراتبی."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "چارت سازمانی"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "کارمند عمومی"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "تغییر مسیر"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "مشاهده همه"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "وابستهها"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "تیم"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "این کارمند هیچ مدیر یا زیردستی ندارد."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "جمع کل:"
|
||||
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fi.po
Normal file
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fi.po
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Normaali työntekijä"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Suorat ja epäsuorat alaiset"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Suorat alaiset"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Työntekijä"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Luodaksesi organisaatiokaavion, aseta päällikkö ja tallenna."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Epäsuorien alaisten määrä"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Epäsuorat alaiset"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Lisää päälliköitä"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Ei hierarkia asemaa."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organisaatiokaavio"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Julkinen työntekijä"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Uudelleenohjaus"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Näytä kaikki"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Alaiset"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Tiimi"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Tällä työntekijällä ei ole esimiestä eikä alaisia."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Yhteensä"
|
||||
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fo.po
Normal file
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fo.po
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Íalt"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fr.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/fr.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Employé basique"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Subordonnés directs et indirects"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordonnés directs"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Employé"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Afin d'obtenir un organigramme, ajoutez un responsable et enregistrez."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Nombre de subordonnés indirects"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Subordonnés indirects"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Plus de managers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Aucune position hiérarchique."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organigramme"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Fonctionnaire"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redirection"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Voir tout"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordonnés"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Équipe"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Cet employé n'a pas de responsable ni de subordonné."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/gl.po
Normal file
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/gl.po
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/gu.po
Normal file
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/gu.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# 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:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/he.po
Normal file
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/he.po
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# or balmas, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "עובד רגיל"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "כפיפים ישירים ועקיפים"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "כפיפים ישירים"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "עובד"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "על מנת לקבל מבנה ארגוני, הגדר מנהל ושמור את הרשומה."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "מס' פקודים עקיפים "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "כפיפים עקיפים"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "מנהלים נוספים"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "אין מיקום היררכי."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "תרשים ארגוני"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "עובד ציבור"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "הפנייה מחדש"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "הצג הכל"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "כפיפים"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "צוות"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "לעובד זה אין מנהל או כפיף."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "סה\"כ"
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hi.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hi.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# 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: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "कर्मचारी"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "कुल"
|
||||
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hr.po
Normal file
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hr.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Milan Tribuson <one.mile.code@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Obični zaposlenik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Direktni i indirektni podređeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Direktno podređeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zaposlenik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "kako bi dobili organigram, postavite voditelja i snimite zapis."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Broj indirektnih podređenih"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Indirektno podređeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Više voditelja"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Nema strukturnu poziciju"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Struktura organizacije"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Javni djelatnik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmjeri"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Vidi sve"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Podređeni djelatnici"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Tim"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Ovaj djelatnik nema voditelja ili podređenih."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
138
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hu.po
Normal file
138
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hu.po
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Daniel Gerstenbrand <daniel.gerstenbrand@gmail.com>, 2022
|
||||
# krnkris, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 2024\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Egyszerű munkavállaló"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Közvetlen és közvetett beosztottak"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Közvetlen beosztottak"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Alkalmazott"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Szervezeti ábra létrehozásához állítson be vezetőt, és mentse a rekordot."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Közvetett beosztottak száma"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Közvetett beosztottak"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Több vezető"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Nincs hierarchikus pozíció"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Szervezeti diagram"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Közalkalmazott"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Átirányít"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Összes mutatása"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Beosztottak"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Csapat"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Az alkalmazottnak nincs vezetője vagy beosztottja."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Összesen"
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hy.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/hy.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/id.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/id.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Karyawan Dasar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Bawahan langsung dan tidak langsung"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Bawahan langsung"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Karyawan"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Untuk mendapatkan organigram, tetapkan manajer dan simpan record."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Jumlah Bawahan Tidak Langsung"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Bawahan tidak langsung"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Lebih banyak manajer"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Tidak ada posisi hirarki."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Struktur Organisasi"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Karyawan Publik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redirect"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Lihat Semua"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Bawahan"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Tim"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Karyawan ini tidak memiliki manajer atau bawahan."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/is.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/is.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
# Corri68, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Corri68, 2025\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Teymi"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Samtals"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/it.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/it.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Dipendente base"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Subordinati diretti e indiretti"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordinati diretti"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Dipendente"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Per ottenere un organigramma, impostare un supervisore e salvare il record."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Numero subordinati indiretti"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Subordinati indiretti"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Più supervisori"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Nessuna posizione gerarchica."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organigramma"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Dipendente pubblico"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Reindirizza"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Vedi tutto"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordinati"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Team"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Questo dipendente non ha supervisori o subordinati."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Totale"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ja.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ja.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Andy Yiu, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "基本社員"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "直接・間接の部下"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "直属の部下"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "従業員"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "組織を可視化するには、マネジャーを設定の上保存してください。"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "間接の部下"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "間接の部下"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "他の管理者"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "上下関係がありません。"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "組織図"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "公務員"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "リダイレクト"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "全て表示"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "部下"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "チーム"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "この従業員にはマネジャーも部下もいません。"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "合計"
|
||||
94
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ka.po
Normal file
94
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ka.po
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/kab.po
Normal file
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/kab.po
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Asemday"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/km.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/km.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# 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:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "អ្នកក្រោមបង្គាប់ផ្ទាល់"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "បុគ្គលិក"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "ដើម្បីទទួលបានសរីរៈសរីរាង្គកំណត់អ្នកគ្រប់គ្រងនិងរក្សាទុកកំណត់ត្រា។"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "អ្នកក្រោមបង្គាប់ដោយប្រយោល"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "អ្នកគ្រប់គ្រងកាន់តែច្រើន"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "គ្មានទីតាំងឋានានុក្រម"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "រចនាសម្ព័ន្ធរបស់អង្គការ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "បញ្ជូនបន្ត"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "អ្នកក្រោមបង្គាប់។"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "ក្រុម"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "និយោជិកនេះគ្មានអ្នកគ្រប់គ្រងឬអ្នកក្រោមបង្គាប់ទេ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "សរុប"
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ko.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ko.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "기본 직원"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "직속 및 관련 부하 직원"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "직속 부하 직원"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "임직원"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "조직도를 가져 오려면 관리자를 설정하고 기록을 저장하십시오."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "전체 부하 직원 수"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "관련 부하 직원"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "관리자 더보기"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "계층 구조가 없습니다."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "조직도"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "일반 직원"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "리디렉션"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "모두 보기"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "부하 직원"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "팀"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "이 직원에게는 관리자 또는 부하 직원이 없습니다."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "합계"
|
||||
113
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lb.po
Normal file
113
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lb.po
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-12 11:32+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:10+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:65
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:86
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:155
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lo.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lo.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "ພະນັກງານ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "ທີມງານ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "ລວມທັງໝົດ"
|
||||
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lt.po
Normal file
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lt.po
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Aleksandr Jadov <a.jadov@tata.lt>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Tiesioginiai pavaldiniai"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Darbuotojas"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Kad gautumėte organizacijos lentelę, nustatykite vadovą ir išsaugokite "
|
||||
"įrašą."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Netiesioginiai pavaldiniai"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Daugiau vadovų"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Nėra pozicijos hierarchijoje."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organizacijos lentelė"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Nukreipti"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Pavaldiniai"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Komanda"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Šis darbuotojas neturi vadovų ar pavaldinių."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Suma"
|
||||
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lv.po
Normal file
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/lv.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Pamata darbinieks"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Tiešie padotie"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Darbinieks"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Publisks darbinieks"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Padotie"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Komanda"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Summa"
|
||||
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/mk.po
Normal file
97
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/mk.po
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Вкупно"
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ml.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ml.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
# Hasna <hasnausmantu@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Hasna <hasnausmantu@gmail.com>, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "അടിസ്ഥാന ജീവനക്കാരൻ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "എംപ്ലോയീ "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "പൊതു ജീവനക്കാരൻ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "ടീം"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "ആകെ"
|
||||
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/mn.po
Normal file
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/mn.po
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||
# Bayarkhuu Bataa, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# hish, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: hish, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Үндсэн ажилтан"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Шууд удирдлага"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Ажилтан"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Байгууллагын бүтцийг харахын тулд менежерийг тохируулаад хадгална."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Шууд бус удирдлагууд"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Илүү олон менежерүүд"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Шаталсан нэгж алга."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Байгууллагын бүтэц"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Ажилтны нээлттэй мэдээлэл"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Шилжүүлэх"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Харьяалагдсан"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Баг"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Энэ ажилтны удирдлага, менежер нь тодорхойлоогүй байна. "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Нийт дүн"
|
||||
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ms.po
Normal file
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ms.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# 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:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Pekerja"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Ubah hala"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Jumlah"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/nb.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/nb.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Rune Restad, 2024\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Vanlig ansatt"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Direkte underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Ansatt"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "For å få et organigram, sett en leder, og lagre posten."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Indirekte underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Ingen posisjon i hierarki"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organisasjonskart"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Offentlig ansatt"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Omdiriger"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Underordnede"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Team"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Denne ansatte har ingen leder eller underordnede."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
94
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ne.po
Normal file
94
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ne.po
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/nl.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/nl.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Basis werknemer"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Directe en indirecte werknemers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Directe werknemers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Werknemer"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Om een organigram te verkrijgen, stel de manager in en sla het record op."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Aantal indirecte werknemers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Indirecte werknemers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Meer managers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Geen hiërarchische positie."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organisatie grafiek"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Openbare werknemer"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Doorverwijzen"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Bekijk alles"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Werknemers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Team"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Deze werknemer heeft geen manager of ondergeschikte."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Totaal"
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/no.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/no.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
140
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/pl.po
Normal file
140
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/pl.po
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Natalia Gros <nag@odoo.com>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Karol Rybak <karolrybak85@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Łukasz Grzenkowicz <lukasz.grzenkowicz@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Podstawowy pracownik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Bezpośredni i pośredni podwładni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Bezpośredni podwładni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Pracownik"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Aby uzyskać schemat organizacyjny, ustaw menedżera i zapisz rekord."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Liczba pośrednich podwładnych"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Pośredni podwładni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Więcej menedżerów"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Pozycja bez hierarchii"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Schemat organizacyjny"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Pracownik publiczny"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Przekieruj"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Zobacz wszystko"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Podlegli"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Zespół"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Ten pracownik nie ma menedżera ani podwładnego."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Suma"
|
||||
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/pt.po
Normal file
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/pt.po
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024
|
||||
# J Ponte, 2025
|
||||
# Daniel Reis, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Daniel Reis, 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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Funcionário básico"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordinados diretos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Funcionário"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Funcionário Público"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redirecionar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordinados"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Equipa"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/pt_BR.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Empregado Básico"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Subordinados Diretos e Indiretos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordinados diretos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Funcionário"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Para obter um organograma, defina um gerente e salve o registro."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Contagem de Subordinações Indiretas"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Subordinados indiretos"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Mais gerentes"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Sem posição hierárquica."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organograma"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Empregado Público"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redirecionar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Ver tudo"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordinados"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Equipe"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Este funcionário não possui gerente ou subordinado."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ro.po
Normal file
137
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ro.po
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Betty Keresztesi, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Betty Keresztesi, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "BAngajat de bază"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Subordonați direcți și indirecți"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Subordonați direcți"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Angajat"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Pentru a obține o organigramă, setați un manager și salvați înregistrarea."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Număr de subordonați indirecți"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Subordonați indirecți"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Mai mulți manageri"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Fără poziție ierarhică."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Schema de organizare"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Angajați Publici "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Redirecționare"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Vezi toate"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Subordonati"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Echipă"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Acest angajat nu are niciun manager sau subordonat."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ru.po
Normal file
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ru.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Ekaterina <nawsikaya@bk.ru>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Сотрудник"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Прямые и непрямые подчиненные"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Прямые подчиненные"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Сотрудник"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Чтобы увидеть оргструктуру - укажите руководителя и сохраните запись."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Количество не прямых подчиненных"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Не прямые подчиненные"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Еще руководители"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Нет позиции в иерархии."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Организационная схема"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Государственный служащий"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Перенаправление"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Все"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Подчинённые"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Команда"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Этот сотрудник не имеет руководителя или подчиненного."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Всего"
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sk.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sk.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Základný zamestnanec"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Priami a nepriami podriadení"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Priamy podriadení"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zamestnanec"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Aby ste získali graf organizačnej štruktúry, nastavte správcu a uložte "
|
||||
"záznam."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Počet nepriamych podriadených"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Nepriami podriadení"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Viac manažérov"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Žiadne hierarchické postavenie."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organizačná štruktúra"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Verejný zamestnanec"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Presmerovať"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Podriadený"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Tím"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Tento zamestnanec nemá vedúceho ani podriadeného."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Celkom"
|
||||
140
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sl.po
Normal file
140
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sl.po
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# 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: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Osnovni zaposleni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Neposredni in posredni podrejeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Vodenje podrejenih"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Kader"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Če želite dobiti organizagram, nastavite upravitelja in shranite zapis."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Neposredno število podrejenih"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Posredni podrejeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Več menedžerjev"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Ni položaja v hierarhiji."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organizacijski grafikon"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Javni uslužbenec"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmeri"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Prikaži vse"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Podrejeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Ekipa"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Ta zaposleni nima upravnika ali podrejenega."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Skupaj"
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sq.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sq.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sr.po
Normal file
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sr.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Osnovni zaposleni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Direct and indirect subordinates"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Direktni podređeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zaposleni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "In order to get an organigram, set a manager and save the record."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Indirect Subordinates Count"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Indirect subordinates"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "More managers"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "No hierarchy position."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organization Chart"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Public Employee"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Preusmeri"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "See All"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Podređeni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Tim"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "This employee has no manager or subordinate."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:136
|
||||
#, python-format
|
||||
msgid "Direct Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:126
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zaposleni"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:89
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:146
|
||||
#, python-format
|
||||
msgid "Indirect Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_child_all_count
|
||||
msgid "Indirect Surbordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:136
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:87
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/js/hr_org_chart.js:139
|
||||
#, python-format
|
||||
msgid "Subordinates of %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:88
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. openerp-web
|
||||
#: code:addons/hr_org_chart/static/src/xml/hr_org_chart.xml:144
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
139
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sv.po
Normal file
139
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sv.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Simon S, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2024
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Grundläggande anställd"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Direkt och indirekt underordnade"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Leda underordnade"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Anställd"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"För att få ett organigram behöver du ställa in en chef och spara posten."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Indirekta antalet underordnade"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Indirekta underordnade"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Fler chefer"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Ingen hierarkisk position."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Organisationsschema"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Offentlig-anställd"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Omdirigera"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Se alla"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Underordnad"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Team"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Den här anställde har ingen chef eller underordnad."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Totalt"
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sw.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/sw.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ta.po
Normal file
129
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/ta.po
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/th.po
Normal file
135
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/th.po
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "พนักงานทั่วไป"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "ลูกน้องทั้งทางตรงและทางอ้อม"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "ลูกน้องโดยตรง"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "พนักงาน"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "หากต้องการรับออร์แกนแกรม ให้ตั้งค่าผู้จัดการและบันทึก"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "จำนวนลูกน้องทางอ้อม"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "ลูกน้องทางอ้อม"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "มีผู้จัดการเพิ่มมากขึ้น"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "ไม่มีตำแหน่งลำดับชั้น"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "แผนผังองค์กร"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "ข้าราชการ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "เปลี่ยนเส้นทาง"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "ดูทั้งหมด"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "ผู้ใต้บังคับบัญชา"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "ทีม"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "พนักงานคนนี้ไม่มีผู้จัดการหรือลูกน้อง"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "รวม"
|
||||
139
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/tr.po
Normal file
139
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/tr.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Buket Şeker <buket_skr@hotmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Murat Kaplan <muratk@projetgrup.com>, 2022\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Temel Personel"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Doğrudan ve dolaylı astlar"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Doğrudan astları"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Personel"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Organizasyon şemasını alabilmek için bir yönetici belirleyin ve kaydedin."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Dolaylı Astlarının Adedi"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Dolaylı astları"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Daha Fazla Yönetici"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Silsile bilgisi yok."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Örgütleme Şeması"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Herkese Açık Personel"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Yeniden yönlendir"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Hepsini Gör"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Astları"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Ekip"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Bu personelin üst veya astı bulunmamaktadır."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Toplam"
|
||||
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/uk.po
Normal file
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/uk.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Звичайний користувач"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Прямі та непрямі підлеглі"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Призначені підлеглі"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Співробітник"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "Щоб отримати організацію, встановіть менеджера та збережіть запис."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Пірахунок непрямих підлеглих"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Непризначені підлеглі"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Більше менеджерів"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Немає ієрархічної позиції."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Організаційна схема"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Зовнішній користувач"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Перенаправлення"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Переглянути все"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Підпорядкування"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Команда"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Цей співробітник не має керівника або підлеглого."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Разом"
|
||||
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/vi.po
Normal file
136
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/vi.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2024\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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Người dùng cơ bản"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "Direct and indirect subordinates"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "Cấp dưới trực tiếp"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Nhân viên"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr ""
|
||||
"Để hiển thị sơ đồ tổ chức, hãy thiết lập một người quản lý và lưu lại bản "
|
||||
"ghi này."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "Indirect Subordinates Count"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "Cấp dưới gián tiếp"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "Thêm người quản lý"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "Không có cây tổ chức"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "Sơ đồ Tổ chức"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Public Employee"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "Chuyển hướng"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "Xem tất cả"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "Nhân viên cấp dưới"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "Đội"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "Nhân viên này không có quản lý cấp trên hay nhân viên cấp dưới."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Tổng"
|
||||
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/zh_CN.po
Normal file
133
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "基本员工"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "直接和间接下属"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "直接下属"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "员工"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "为了获取组织图,请设置一个上司然后保存"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "间接下属统计"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "非直接下属"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "更多管理员"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "没有层级位置"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "组织图表"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "公共员工"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "重定向"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "查看全部"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "下属"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "团队"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "该员工没有上司或下属"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "合计"
|
||||
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/zh_TW.po
Normal file
134
odoo-bringout-oca-ocb-hr_org_chart/hr_org_chart/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Tony Ng, 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: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "一般員工"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,help:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Direct and indirect subordinates"
|
||||
msgstr "直接和間接下屬"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Direct subordinates"
|
||||
msgstr "直接下屬"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "員工"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "In order to get an organigram, set a manager and save the record."
|
||||
msgstr "要獲得組織圖,請設定經理並儲存記錄。"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_all_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_all_count
|
||||
msgid "Indirect Subordinates Count"
|
||||
msgstr "間接下屬數量"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Indirect subordinates"
|
||||
msgstr "間接的下屬"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "More managers"
|
||||
msgstr "更多經理人"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "No hierarchy position."
|
||||
msgstr "沒有層級職位。"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_public_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.res_users_view_form
|
||||
msgid "Organization Chart"
|
||||
msgstr "人員管理組織結構圖"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "公開員工"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Redirect"
|
||||
msgstr "重新導向"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "See All"
|
||||
msgstr "查看所有"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__subordinate_ids
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__subordinate_ids
|
||||
msgid "Subordinates"
|
||||
msgstr "下屬"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hooks.js:0
|
||||
#, python-format
|
||||
msgid "Team"
|
||||
msgstr "團隊"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "This employee has no manager or subordinate."
|
||||
msgstr "該員工沒有經理或下級。"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "總計"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import hr_org_chart_mixin
|
||||
from . import hr_employee
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue