Начальное наполнение
This commit is contained in:
parent
e382e0ee50
commit
b02659555e
5
__init__.py
Normal file
5
__init__.py
Normal file
@ -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
|
37
__manifest__.py
Normal file
37
__manifest__.py
Normal file
@ -0,0 +1,37 @@
|
||||
# -*- 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', 'web_hierarchy'],
|
||||
'auto_install': ['hr'],
|
||||
'data': [
|
||||
'views/hr_department_views.xml',
|
||||
'views/hr_views.xml',
|
||||
'views/hr_employee_public_views.xml',
|
||||
'views/hr_org_chart_menus.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web._assets_primary_variables': [
|
||||
'hr_org_chart/static/src/scss/variables.scss',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'hr_org_chart/static/src/fields/*',
|
||||
'hr_org_chart/static/src/views/**/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'hr_org_chart/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
2
controllers/__init__.py
Normal file
2
controllers/__init__.py
Normal file
@ -0,0 +1,2 @@
|
||||
# -*- coding: utf-8 -*
|
||||
from . import hr_org_chart
|
101
controllers/hr_org_chart.py
Normal file
101
controllers/hr_org_chart.py
Normal file
@ -0,0 +1,101 @@
|
||||
# -*- 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):
|
||||
if not employee_id: # to check
|
||||
return None
|
||||
employee_id = int(employee_id)
|
||||
|
||||
context = kw.get('context', request.env.context)
|
||||
if 'allowed_company_ids' in context:
|
||||
cids = 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 None
|
||||
try:
|
||||
Employee.browse(employee_id).check_access_rule('read')
|
||||
except AccessError:
|
||||
return None
|
||||
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)
|
||||
if not employee: # to check
|
||||
return {
|
||||
'managers': [],
|
||||
'children': [],
|
||||
}
|
||||
|
||||
# compute employee data for org chart
|
||||
ancestors, current = request.env['hr.employee.public'].sudo(), employee.sudo()
|
||||
while current.parent_id and len(ancestors) < self._managers_level+1 and current != current.parent_id:
|
||||
ancestors += current.parent_id
|
||||
current = current.parent_id
|
||||
|
||||
values = dict(
|
||||
self=self._prepare_employee_data(employee),
|
||||
managers=[
|
||||
self._prepare_employee_data(ancestor)
|
||||
for idx, ancestor in enumerate(ancestors)
|
||||
if idx < self._managers_level
|
||||
],
|
||||
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
|
140
i18n/af.po
Normal file
140
i18n/af.po
Normal file
@ -0,0 +1,140 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Totaal"
|
140
i18n/am.po
Normal file
140
i18n/am.po
Normal file
@ -0,0 +1,140 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 ""
|
200
i18n/ar.po
Normal file
200
i18n/ar.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Malaz Abuidris <msea@odoo.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">المخطط التنظيمي</span> "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "إضافة موظف جديد"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "لون القسم "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "العملية غير مدعومة "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "الإجمالي"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"بنظرة سريعة على صفحة الموظف على أودو، يمكنك\n"
|
||||
" بسهولة العثور على جميع المعلومات التي تحتاجها لكل شخص؛\n"
|
||||
" بيانات الاتصال، والمنصب الوظيفي، والجاهزية، إلخ."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "أفراد "
|
145
i18n/az.po
Normal file
145
i18n/az.po
Normal file
@ -0,0 +1,145 @@
|
||||
# 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.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+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"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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 "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
|
||||
#, 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/hr_org_chart.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"
|
205
i18n/bg.po
Normal file
205
i18n/bg.po
Normal file
@ -0,0 +1,205 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Albena Mincheva <albena_vicheva@abv.bg>, 2023\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Добавяне на нов служител"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "Общ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Само с един бърз поглед към екрана на служителите в Odoo,\n"
|
||||
" можете лесно да откриете цялата необходима информация за всяко лице;\n"
|
||||
" данни за контакт, работна позиция, наличност т.н."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
144
i18n/bs.po
Normal file
144
i18n/bs.po
Normal file
@ -0,0 +1,144 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Ukupno"
|
207
i18n/ca.po
Normal file
207
i18n/ca.po
Normal file
@ -0,0 +1,207 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# Jonatan Gk, 2023
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
# marcescu, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: marcescu, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Afegiu un nou empleat"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Empleats"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operació no implementada"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Amb una vista rapida a la pantalla d'empleats d'Odoo podrà trobar fàcilment "
|
||||
"tota la informació que necessiti sobre cada persona: informació de contacte,"
|
||||
" lloc de treball, disponibilitat, etc..."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
200
i18n/cs.po
Normal file
200
i18n/cs.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Přidat nového zaměstnance"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Zaměstnanci"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operace není podporována"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Stačí krátký pohled na obrazovku zaměstnance Odoo, abyste mohli snadno "
|
||||
"najdete všechny potřebné informace o každé osobě; kontaktní údaje, pracovní "
|
||||
"pozici, dostupnost atd."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "lidé"
|
201
i18n/da.po
Normal file
201
i18n/da.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Tilføj en ny medarbejder"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Ansatte"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operation ikke understøttet"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Blot et hurtigt kig på Odoos oversigt over ansatte kan hjælpe dig med at "
|
||||
"finde al den information, som du skal bruge for hver person: "
|
||||
"kontaktoplysninger, job, tilgængelighed mv."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
202
i18n/de.po
Normal file
202
i18n/de.po
Normal file
@ -0,0 +1,202 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organigramm</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Einen neuen Mitarbeiter hinzufügen"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Abteilungsfarbe"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Anzahl direkter Untergeordnete"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "Ist untergeordnet"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Vorgang nicht unterstützt"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Organigramm"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Mit einem kurzen Blick auf die Mitarbeiterseite in Odoo, können\n"
|
||||
"Sie einfach alle Informationen zu allen Personen, mit Ihren Kontaktdaten,\n"
|
||||
"Stellenbezeichnungen, Verfügbarkeiten, Ausbildung etc. einsehen."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "Personen"
|
144
i18n/el.po
Normal file
144
i18n/el.po
Normal file
@ -0,0 +1,144 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Σύνολο"
|
143
i18n/en_GB.po
Normal file
143
i18n/en_GB.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
201
i18n/es.po
Normal file
201
i18n/es.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organigrama</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Agregar un nuevo empleado"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Color del departamento"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Número de subordinados directos"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Empleados"
|
||||
|
||||
#. 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 obtener un organigrama, establece un responsable y guarda el 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 "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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "Es subordinado "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operación no admitida"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Organigrama"
|
||||
|
||||
#. 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 "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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Con un vistazo rápido a la pantalla de empleados de Odoo\n"
|
||||
" puedes encontrar fácilmente toda la información que necesitas de cada persona:\n"
|
||||
" datos de contacto, puesto de trabajo, disponibilidad, etc."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "personas"
|
203
i18n/es_419.po
Normal file
203
i18n/es_419.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Iran Villalobos López, 2023
|
||||
# Fernanda Alvarez, 2024
|
||||
# Lucia Pacheco, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Lucia Pacheco, 2024\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organigrama</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Agregar un nuevo empleado"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Color del departamento"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Número de subordinados directos"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Empleados"
|
||||
|
||||
#. 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 obtener un organigrama, establezca un gerente y guarde el 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 "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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "Es subordinado "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operación no compatible"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Gráfico de org"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Con un vistazo rápido a la pantalla de empleados de Odoo\n"
|
||||
" puede encontrar con facilidad toda la información que necesita de cada persona:\n"
|
||||
" datos de contacto, puesto de trabajo, disponibilidad, etc."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "personas "
|
143
i18n/es_BO.po
Normal file
143
i18n/es_BO.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_BO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_CL.po
Normal file
143
i18n/es_CL.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_CO.po
Normal file
143
i18n/es_CO.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_CR.po
Normal file
143
i18n/es_CR.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_DO.po
Normal file
143
i18n/es_DO.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_EC.po
Normal file
143
i18n/es_EC.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_PE.po
Normal file
143
i18n/es_PE.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_PY.po
Normal file
143
i18n/es_PY.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/es_VE.po
Normal file
143
i18n/es_VE.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
208
i18n/et.po
Normal file
208
i18n/et.po
Normal file
@ -0,0 +1,208 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Piia Paurson <piia@avalah.ee>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Algo Kärp <algokarp@gmail.com>, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# JanaAvalah, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Katrin Kampura, 2023
|
||||
# Anna, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anna, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organisatsiooniline struktuur</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Lisage uus töötaja"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Osakonna värv"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Otsesed alluvad arv"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Töötajad"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "allub"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Toiming pole toetatud"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Organisatsiooniline struktuur"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Odoo töötaja aknas leiad lihtsasti\n"
|
||||
"kogu vajaliku informatsiooni kõigi inimeste kohta:\n"
|
||||
"kontaktandmed, ametikohad, saadavalolek jne."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "inimesed"
|
143
i18n/eu.po
Normal file
143
i18n/eu.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
193
i18n/fa.po
Normal file
193
i18n/fa.po
Normal file
@ -0,0 +1,193 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Yousef Shadmanesh <y.shadmanesh@gmail.com>, 2023
|
||||
# F Hariri <fhari1234@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: F Hariri <fhari1234@gmail.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "افزودن یک کارمند جدید"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "عملیات پشتیبانی نمی شود"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "مجموع"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"تنها با یک نگاه سریع بر روی صفحه نمایش کارمند Odoo، شما به راحتی میتوانید تمام اطلاعات مورد نیاز خود را برای هر فرد پیدا کنید؛\n"
|
||||
" اطلاعات مخاطب موقعیت شغلی، در دسترس بودن و غیره."
|
204
i18n/fi.po
Normal file
204
i18n/fi.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Simo Suurla <simo@suurla.fi>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Lisää uusi työntekijä"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Työntekijät"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Toiminto ei ole tuettu"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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ä"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Vain nopealla vilkaisulla Odoo-työntekijän näytöllä voitte\n"
|
||||
" löydät helposti kaikki tarvitsemasi tiedot kustakin henkilöstä;\n"
|
||||
" yhteystiedot, työtehtävä, saatavuus jne."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "ihmiset"
|
143
i18n/fo.po
Normal file
143
i18n/fo.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Íalt"
|
201
i18n/fr.po
Normal file
201
i18n/fr.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organigramme</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Ajouter un nouvel employé"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_base
|
||||
msgid "Basic Employee"
|
||||
msgstr "Employé de base"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Couleur du département"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Nombre de subordonnés directs"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Employé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 ""
|
||||
"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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "Est subordonné"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Opération non prise en charge"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Organigramme"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"D'un coup d’œil rapide à l'écran d'employé d'Odoo, vous\n"
|
||||
"pouvez aisément trouver toutes les informations dont vous avez besoin pour chaque personne ; \n"
|
||||
"coordonnées, poste, disponibilité, etc."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "personnes"
|
143
i18n/fr_CA.po
Normal file
143
i18n/fr_CA.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/gl.po
Normal file
143
i18n/gl.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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"
|
143
i18n/gu.po
Normal file
143
i18n/gu.po
Normal file
@ -0,0 +1,143 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:04+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "કુલ"
|
204
i18n/he.po
Normal file
204
i18n/he.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2023
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# yael terner, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: yael terner, 2023\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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "הוסף עובד חדש"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "צבע המחלקה"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "הפעולה אינה נתמכת"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "סה\"כ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"במבט מהיר על מסך העובדים של Odoo, \n"
|
||||
"אתה יכול למצוא בקלות את כל המידע הדרוש לך לכל אדם,\n"
|
||||
" נתוני קשר, משרה, זמינות וכו '."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
147
i18n/hr.po
Normal file
147
i18n/hr.po
Normal file
@ -0,0 +1,147 @@
|
||||
# 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.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+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"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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 "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
|
||||
#, 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/hr_org_chart.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"
|
192
i18n/hr_org_chart.pot
Normal file
192
i18n/hr_org_chart.pot
Normal file
@ -0,0 +1,192 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2024-01-05 12: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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr ""
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
204
i18n/hu.po
Normal file
204
i18n/hu.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Daniel Gerstenbrand <daniel.gerstenbrand@gmail.com>, 2023
|
||||
# krnkris, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Új alkalmazott"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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 "Munkavállaló"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Munkavállalók"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "A művelet nem támogatott"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Az Odoo Munkavállalók moduljával szempillantás alatt\n"
|
||||
"könnyen megtalálja az összes személyhez a kívánt információkat; \n"
|
||||
"kapcsolati adatok, munkakör, elérhetőség stb."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
199
i18n/id.po
Normal file
199
i18n/id.po
Normal file
@ -0,0 +1,199 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Abe Manyo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Bagan Organisasi</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Tambahkan karyawan baru"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Warna Departemen"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Jumlah Bawahan Langsung"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "Apakah Bawahan"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operation not supported"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Bagan Organisasi"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Dengan hanya melihat sekilas pada layar karyawan Odoo, Anda dapat dengan mudah menemukan semua informasi yang Anda butuhkan untuk setiap orang;\n"
|
||||
" data kontak, lowongan kerja, ketersediaan, dll."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "orang"
|
140
i18n/is.po
Normal file
140
i18n/is.po
Normal file
@ -0,0 +1,140 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 "Starfsmaður"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Samtals"
|
201
i18n/it.po
Normal file
201
i18n/it.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Marianna Ciofani, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Marianna Ciofani, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organigramma</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Aggiungi nuovo dipendente"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Colore dipartimento"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Numero subordinati diretti"
|
||||
|
||||
#. 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 "Sottoposti 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 "Sottoposti diretti"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Dipendente"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Dipendenti"
|
||||
|
||||
#. 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 sottoposti 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 "Sottoposti indiretti"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "È subordinato"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operazione non supportata"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Organigramma"
|
||||
|
||||
#. 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 sottoposti."
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Con un rapido sguardo alla schermata dei dipendenti Odoo, è \n"
|
||||
" possibile trovare facilmente tutte le informazioni necessarie per ogni persona;\n"
|
||||
" informazioni di contatto, posizione di lavoro, disponibilità, ecc."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "persone"
|
200
i18n/ja.po
Normal file
200
i18n/ja.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Junko Augias, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Junko Augias, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">組織図</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "新しい従業員を追加"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "部署色"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "操作はサポートされていません"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "合計"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Odooの従業員の画面をパッと見ただけで、\n"
|
||||
" 従業員に関する必要な全ての情報を簡単に見つけることができます;\n"
|
||||
" 連絡先、職位、出社日や休暇予定、等"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "人"
|
140
i18n/ka.po
Normal file
140
i18n/ka.po
Normal file
@ -0,0 +1,140 @@
|
||||
# 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: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 ""
|
143
i18n/kab.po
Normal file
143
i18n/kab.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Asemday"
|
144
i18n/km.po
Normal file
144
i18n/km.po
Normal file
@ -0,0 +1,144 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
# Chan Nath <channath@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Chan Nath <channath@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "សរុប"
|
201
i18n/ko.po
Normal file
201
i18n/ko.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Daye Jeong, 2023
|
||||
# Wil Odoo, 2024
|
||||
# Sarah Park, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Sarah Park, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">조직도</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "새 직원 추가"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "부서 색상"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "지원되지 않는 작업"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "총계"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Odoo 임직원 화면을 간단히 살펴보면,\n"
|
||||
" 연락처, 직책, 근무 일정 등\n"
|
||||
" 필요한 모든 정보를 쉽게 찾을 수 있습니다."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "사용자"
|
140
i18n/lb.po
Normal file
140
i18n/lb.po
Normal file
@ -0,0 +1,140 @@
|
||||
# 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: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:10+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 ""
|
143
i18n/lo.po
Normal file
143
i18n/lo.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "ລວມທັງໝົດ"
|
192
i18n/lt.po
Normal file
192
i18n/lt.po
Normal file
@ -0,0 +1,192 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Aleksandr Jadov <a.jadov@tata.lt>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\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_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Pridėti naują darbuotoją"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Darbuotojai"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Vos užmetę akį į \"Odoo\" darbuotojų vaizdą, jūs\n"
|
||||
" galėsite rasti visą reikiamą informaciją apie kiekvieną žmogų;\n"
|
||||
" kontaktinius duomenis, poziciją, pasiekiamumą ir kt."
|
191
i18n/lv.po
Normal file
191
i18n/lv.po
Normal file
@ -0,0 +1,191 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Arnis Putniņš <arnis@allegro.lv>, 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_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Pievienot jaunu darbinieku"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Darbinieki"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operācija netiek atbalstīta"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "Org Chart"
|
||||
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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Ātri aplūkojot Odoo darbinieku ekrānu, iespējams\n"
|
||||
" viegli atrast visu nepieciešamo informāciju par katru personu;\n"
|
||||
" kontaktinformāciju, amatu, pieejamību, utt."
|
143
i18n/mk.po
Normal file
143
i18n/mk.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Вкупно"
|
148
i18n/mn.po
Normal file
148
i18n/mn.po
Normal file
@ -0,0 +1,148 @@
|
||||
# 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.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+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"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Нийт дүн"
|
145
i18n/nb.po
Normal file
145
i18n/nb.po
Normal file
@ -0,0 +1,145 @@
|
||||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 "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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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 "Organisasjonskart"
|
||||
|
||||
#. 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
|
||||
#, 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/hr_org_chart.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"
|
140
i18n/ne.po
Normal file
140
i18n/ne.po
Normal file
@ -0,0 +1,140 @@
|
||||
# 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: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 ""
|
201
i18n/nl.po
Normal file
201
i18n/nl.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Jolien De Paepe, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organigram</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Nieuwe werknemer toevoegen"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Kleur afdeling"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Aantal directe werknemers"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Werknemers"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "Is 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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Bewerking niet ondersteund"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Organigram"
|
||||
|
||||
#. 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 "Organigram"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Met slechts een snelle blik op het Odoo werknemer scherm kun je\n"
|
||||
"gemakkelijk alle informatie vinden die je nodig heeft voor elke persoon;\n"
|
||||
"contact data, functie, beschikbaarheid, enz."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "personen"
|
199
i18n/pl.po
Normal file
199
i18n/pl.po
Normal file
@ -0,0 +1,199 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Dodaj nowego pracownika"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Pracownicy"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operacja nie jest wspierana"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Wystarczy rzucić okiem na ekran pracownika Odoo\n"
|
||||
" i możesz łatwo znaleźć wszystkie potrzebne informacje dla każdej osoby;\n"
|
||||
" dane kontaktowe, stanowisko pracy, dostępność itp."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "ludzie"
|
199
i18n/pt.po
Normal file
199
i18n/pt.po
Normal file
@ -0,0 +1,199 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Adicionar novo Funcionário"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "Funcionário"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Funcionários"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operação não suportada."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Com apenas uma rápida olhada na tela empregado a Openerp, you\n"
|
||||
"pode facilmente encontrar todas as informações que você precisa para cada pessoa; \n"
|
||||
"dados de contato, cargo, disponibilidade, etc."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
201
i18n/pt_BR.po
Normal file
201
i18n/pt_BR.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2024
|
||||
# Maitê Dietze, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Organograma</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Adicionar um novo funcionário"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Cor do departamento"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
msgstr "Contagem de subordinados diretos"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Funcionários"
|
||||
|
||||
#. 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 "Total de subordinados indiretos"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr "É subordinado"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operação não suportada"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
msgstr "Organograma"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Com apenas um olhar rápido na tela de funcionários do Odoo, você facilmente "
|
||||
"consegue encontrar todas as informações que precisa para cada pessoa; dados "
|
||||
"de contato, cargo, disponibilidade, etc."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "pessoas"
|
146
i18n/ro.po
Normal file
146
i18n/ro.po
Normal file
@ -0,0 +1,146 @@
|
||||
# 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
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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 "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
|
||||
#, 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 ""
|
||||
|
||||
#. 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/hr_org_chart.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"
|
204
i18n/ru.po
Normal file
204
i18n/ru.po
Normal file
@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Ekaterina <nawsikaya@bk.ru>, 2023
|
||||
# Диляра Дельтаева <dilya.kz93@gmail.com>, 2023
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2023
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Организационная диаграмма</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Добавить нового сотрудника"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Цвет отдела"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Операция не поддерживается"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "Всего"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Бросив лишь беглый взгляд на экран сотрудника Odoo, вы \n"
|
||||
" можете легко найти все необходимую информацию по каждому человеку;\n"
|
||||
" контактные данные, должность, доступность в офисе и т.д."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "человек"
|
201
i18n/sk.po
Normal file
201
i18n/sk.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Pridajte nového zamestnanca"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Zamestnanci"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operácia nie je podporovaná"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Pri letmom pohľade na prehľad zamestnancov Odoo,\n"
|
||||
"môžete ľahko nájsť všetky informácie, ktoré potrebujete pre každú osobu;\n"
|
||||
"kontaktné údaje, pracovná pozícia, dostupnosť, atď."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
206
i18n/sl.po
Normal file
206
i18n/sl.po
Normal file
@ -0,0 +1,206 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# jl2035 <jaka.luthar@gmail.com>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# Katja Deržič, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Katja Deržič, 2024\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Dodaj novega zaposlenega"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "Vodenje podrejenih"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Kader"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Kadri"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "Ni položaja v hierarhiji."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "Organizacijski grafikon"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Z vpogledom v Odoo kadrovski sistem\n"
|
||||
"lahko enostavno in hitro najdete vse informacije za vsako osebo;\n"
|
||||
"kontaktni podatki, oddelek, odsotnost, itd."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
140
i18n/sq.po
Normal file
140
i18n/sq.po
Normal file
@ -0,0 +1,140 @@
|
||||
# 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: 2023-01-17 08:01+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"Language: sq\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 ""
|
203
i18n/sr.po
Normal file
203
i18n/sr.po
Normal file
@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Add a new employee"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operacija nije podržana"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "ljudi"
|
143
i18n/sr@latin.po
Normal file
143
i18n/sr@latin.po
Normal file
@ -0,0 +1,143 @@
|
||||
# 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: 2023-01-17 08:01+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"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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 ""
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
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
|
||||
#, 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/hr_org_chart.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 "Ukupno"
|
201
i18n/sv.po
Normal file
201
i18n/sv.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Lasse L, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Simon S, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Simon S, 2023\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr ""
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "Anställd"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Anställda"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "Ingen hierarkisk position."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Åtgärd stöds inte"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "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 ""
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
200
i18n/th.po
Normal file
200
i18n/th.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">แผนภูมิองค์กร</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "เพิ่มพนักงานใหม่"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "สีประจำแผนก"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "ไม่รองรับการทำงาน"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "รวม"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"เพียงแค่ชั่วพริบตาบนหน้าจอพนักงานของ Odoo คุณก็จะ\n"
|
||||
" สามารถค้นหาข้อมูลทั้งหมดที่คุณต้องการสำหรับแต่ละบุคคลได้อย่างง่ายดาย\n"
|
||||
" ข้อมูลการติดต่อ ตำแหน่งงาน ความพร้อม และอื่น ๆ "
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "ผู้คน"
|
207
i18n/tr.po
Normal file
207
i18n/tr.po
Normal file
@ -0,0 +1,207 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Özlem Atalay <ozlema@eskayazilim.com.tr>, 2023
|
||||
# Buket Şeker <buket_skr@hotmail.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ozlem Cikrikci <ozlemc@eskayazilim.com.tr>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Yeni Bir Personel Ekle"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
msgstr "Personeller"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Operasyon desteklenmiyor"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "Ö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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Odoo personel ekranına hızlıca göz atarak, \n"
|
||||
" herkesle ilgili bilgileri kolayca bulabilirsiniz;\n"
|
||||
" kontak bilgisi, iş posizyonu, iletişim bilgileri, müsaitlik, vb."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr ""
|
200
i18n/uk.po
Normal file
200
i18n/uk.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Оргструктура</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Додати нового співробітника"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "Колір відділу"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Операція не підтримується"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "Разом"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Просто швидко подивіться на екран працівника Odoo, ви\n"
|
||||
"можете легко знайти всю необхідну інформації для кожної людини;\n"
|
||||
"контактні дані, робоче місце, наявність і т. д."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "люди"
|
201
i18n/vi.po
Normal file
201
i18n/vi.po
Normal file
@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "Thêm nhân viên mới"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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 "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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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 tập dữ"
|
||||
" liệu 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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "Hoạt động không được hỗ trợ"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "Sơ đồ Tổ chức"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model,name:hr_org_chart.model_hr_employee_public
|
||||
msgid "Public Employee"
|
||||
msgstr "Nhân viên chung"
|
||||
|
||||
#. 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 ngũ"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"Chỉ với một cái nhìn nhanh trên màn hình nhân viên của hệ thống, bạn\n"
|
||||
" có thể dễ dàng tìm thấy tất cả thông tin bạn cần cho mỗi người;\n"
|
||||
" thông tin liên lạc, vị trí công việc, tính khả dụng, v.v."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "người"
|
199
i18n/zh_CN.po
Normal file
199
i18n/zh_CN.po
Normal file
@ -0,0 +1,199 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2024
|
||||
# Chloe Wang, 2024
|
||||
# 湘子 南 <1360857908@qq.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 湘子 南 <1360857908@qq.com>, 2024\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_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">组织结构图</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "添加新员工"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "部门颜色"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "不支持的操作"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "总计"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr "只要快速浏览一下 ERP 员工界面,就可以很容易地找到每个人需要的所有信息:联系方式、职位、可用性等."
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "人员"
|
200
i18n/zh_TW.po
Normal file
200
i18n/zh_TW.po
Normal file
@ -0,0 +1,200 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_org_chart
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Tony Ng, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-05 12:31+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tony Ng, 2024\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_employee_view_form_inherit_org_chart
|
||||
msgid "<span class=\"o_stat_text\">Org Chart</span>"
|
||||
msgstr "<span class=\"o_stat_text\">組織架構圖</span>"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid "Add a new employee"
|
||||
msgstr "添加一個新員工"
|
||||
|
||||
#. 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,field_description:hr_org_chart.field_hr_employee__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__department_color
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__department_color
|
||||
msgid "Department Color"
|
||||
msgstr "部門顏色"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_base__child_count
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__child_count
|
||||
msgid "Direct Subordinates Count"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:hr_org_chart.hr_department_hierarchy_view
|
||||
msgid "Employees"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee__is_subordinate
|
||||
#: model:ir.model.fields,field_description:hr_org_chart.field_hr_employee_public__is_subordinate
|
||||
msgid "Is Subordinate"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/hr_org_chart/models/hr_org_chart_mixin.py:0
|
||||
#, python-format
|
||||
msgid "Operation not supported"
|
||||
msgstr "不支援該操作"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model:ir.actions.act_window,name:hr_org_chart.action_hr_employee_org_chart
|
||||
#: model:ir.ui.menu,name:hr_org_chart.menu_hr_employee_org_chart
|
||||
msgid "Org Chart"
|
||||
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 "總計"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#: model_terms:ir.actions.act_window,help:hr_org_chart.action_hr_employee_org_chart
|
||||
msgid ""
|
||||
"With just a quick glance on the Odoo employee screen, you\n"
|
||||
" can easily find all the information you need for each person;\n"
|
||||
" contact data, job position, availability, etc."
|
||||
msgstr ""
|
||||
"隨著Odoo員工的螢幕上只是一個快速瀏覽,您\n"
|
||||
"可以很容易地找到您所需要的每個人\n"
|
||||
"的資訊、聯絡人資料、工作職位、可用性等。"
|
||||
|
||||
#. module: hr_org_chart
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_org_chart/static/src/views/hr_employee_hierarchy/hr_employee_hierarchy_card.xml:0
|
||||
#, python-format
|
||||
msgid "people"
|
||||
msgstr "人"
|
5
models/__init__.py
Normal file
5
models/__init__.py
Normal file
@ -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
|
20
models/hr_employee.py
Normal file
20
models/hr_employee.py
Normal file
@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class Employee(models.Model):
|
||||
_inherit = ["hr.employee"]
|
||||
|
||||
subordinate_ids = fields.One2many('hr.employee', string='Subordinates', compute='_compute_subordinates', help="Direct and indirect subordinates",
|
||||
compute_sudo=True)
|
||||
is_subordinate = fields.Boolean(compute="_compute_is_subordinate", search="_search_is_subordinate")
|
||||
|
||||
|
||||
class HrEmployeePublic(models.Model):
|
||||
_inherit = ["hr.employee.public"]
|
||||
|
||||
subordinate_ids = fields.One2many('hr.employee.public', string='Subordinates', compute='_compute_subordinates', help="Direct and indirect subordinates",
|
||||
compute_sudo=True)
|
||||
is_subordinate = fields.Boolean(compute="_compute_is_subordinate", search="_search_is_subordinate")
|
74
models/hr_org_chart_mixin.py
Normal file
74
models/hr_org_chart_mixin.py
Normal file
@ -0,0 +1,74 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class HrEmployeeBase(models.AbstractModel):
|
||||
_inherit = "hr.employee.base"
|
||||
|
||||
child_all_count = fields.Integer(
|
||||
'Indirect Subordinates Count',
|
||||
compute='_compute_subordinates', recursive=True, store=False,
|
||||
compute_sudo=True)
|
||||
department_color = fields.Integer("Department Color", related="department_id.color")
|
||||
child_count = fields.Integer(
|
||||
'Direct Subordinates Count',
|
||||
compute='_compute_child_count', recursive=True,
|
||||
compute_sudo=True,
|
||||
)
|
||||
|
||||
def _get_subordinates(self, parents=None):
|
||||
"""
|
||||
Helper function to compute subordinates_ids.
|
||||
Get all subordinates (direct and indirect) of an employee.
|
||||
An employee can be a manager of his own manager (recursive hierarchy; e.g. the CEO is manager of everyone but is also
|
||||
member of the RD department, managed by the CTO itself managed by the CEO).
|
||||
In that case, the manager in not counted as a subordinate if it's in the 'parents' set.
|
||||
"""
|
||||
if not parents:
|
||||
parents = self.env[self._name]
|
||||
|
||||
indirect_subordinates = self.env[self._name]
|
||||
parents |= self
|
||||
direct_subordinates = self.child_ids - parents
|
||||
child_subordinates = direct_subordinates._get_subordinates(parents=parents) if direct_subordinates else self.browse()
|
||||
indirect_subordinates |= child_subordinates
|
||||
return indirect_subordinates | direct_subordinates
|
||||
|
||||
@api.depends('child_ids', 'child_ids.child_all_count')
|
||||
def _compute_subordinates(self):
|
||||
for employee in self:
|
||||
employee.subordinate_ids = employee._get_subordinates()
|
||||
employee.child_all_count = len(employee.subordinate_ids)
|
||||
|
||||
@api.depends_context('uid', 'company')
|
||||
@api.depends('parent_id')
|
||||
def _compute_is_subordinate(self):
|
||||
subordinates = self.env.user.employee_id.subordinate_ids
|
||||
if not subordinates:
|
||||
self.is_subordinate = False
|
||||
else:
|
||||
for employee in self:
|
||||
employee.is_subordinate = employee in subordinates
|
||||
|
||||
def _search_is_subordinate(self, operator, value):
|
||||
if operator not in ('=', '!=') or not isinstance(value, bool):
|
||||
raise UserError(_('Operation not supported'))
|
||||
# Double negation
|
||||
if not value:
|
||||
operator = '!=' if operator == '=' else '='
|
||||
if not self.env.user.employee_id.subordinate_ids:
|
||||
return [('id', operator, self.env.user.employee_id.id)]
|
||||
return (['!'] if operator == '!=' else []) + [('id', 'in', self.env.user.employee_id.subordinate_ids.ids)]
|
||||
|
||||
def _compute_child_count(self):
|
||||
employee_read_group = self._read_group(
|
||||
[('parent_id', 'in', self.ids)],
|
||||
['parent_id'],
|
||||
['id:count'],
|
||||
)
|
||||
child_count_per_parent_id = dict(employee_read_group)
|
||||
for employee in self:
|
||||
employee.child_count = child_count_per_parent_id.get(employee._origin, 0)
|
45
static/src/fields/hooks.js
Normal file
45
static/src/fields/hooks.js
Normal file
@ -0,0 +1,45 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { session } from "@web/session";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
|
||||
/**
|
||||
* Redirect to the sub employee kanban view.
|
||||
*
|
||||
* @private
|
||||
* @param {MouseEvent} event
|
||||
* @returns {Promise} action loaded
|
||||
*
|
||||
*/
|
||||
export function onEmployeeSubRedirect() {
|
||||
const actionService = useService('action');
|
||||
const orm = useService('orm');
|
||||
const rpc = useService('rpc');
|
||||
|
||||
return async (event) => {
|
||||
const employeeId = parseInt(event.currentTarget.dataset.employeeId);
|
||||
if (!employeeId) {
|
||||
return {};
|
||||
}
|
||||
const type = event.currentTarget.dataset.type || 'direct';
|
||||
// Get subordonates of an employee through a rpc call.
|
||||
const subordinateIds = await rpc('/hr/get_subordinates', {
|
||||
employee_id: employeeId,
|
||||
subordinates_type: type,
|
||||
context: session.user_context
|
||||
});
|
||||
let action = await orm.call('hr.employee', 'get_formview_action', [employeeId]);
|
||||
action = {...action,
|
||||
name: _t('Team'),
|
||||
view_mode: 'kanban,list,form',
|
||||
views: [[false, 'kanban'], [false, 'list'], [false, 'form']],
|
||||
domain: [['id', 'in', subordinateIds]],
|
||||
res_id: false,
|
||||
context: {
|
||||
default_parent_id: employeeId,
|
||||
}
|
||||
};
|
||||
actionService.doAction(action);
|
||||
};
|
||||
}
|
124
static/src/fields/hr_org_chart.js
Normal file
124
static/src/fields/hr_org_chart.js
Normal file
@ -0,0 +1,124 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
import { usePopover } from "@web/core/popover/popover_hook";
|
||||
import { onEmployeeSubRedirect } from './hooks';
|
||||
import { Component, onWillStart, onWillRender, useState } from "@odoo/owl";
|
||||
|
||||
class HrOrgChartPopover extends Component {
|
||||
async setup() {
|
||||
super.setup();
|
||||
|
||||
this.rpc = useService('rpc');
|
||||
this.orm = useService('orm');
|
||||
this.actionService = useService("action");
|
||||
this._onEmployeeSubRedirect = onEmployeeSubRedirect();
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirect to the employee form view.
|
||||
*
|
||||
* @private
|
||||
* @param {MouseEvent} event
|
||||
* @returns {Promise} action loaded
|
||||
*/
|
||||
async _onEmployeeRedirect(employeeId) {
|
||||
const action = await this.orm.call('hr.employee', 'get_formview_action', [employeeId]);
|
||||
this.actionService.doAction(action);
|
||||
}
|
||||
}
|
||||
HrOrgChartPopover.template = 'hr_org_chart.hr_orgchart_emp_popover';
|
||||
|
||||
export class HrOrgChart extends Component {
|
||||
async setup() {
|
||||
super.setup();
|
||||
|
||||
this.rpc = useService('rpc');
|
||||
this.orm = useService('orm');
|
||||
this.actionService = useService("action");
|
||||
this.user = useService("user");
|
||||
this.popover = usePopover(HrOrgChartPopover);
|
||||
|
||||
this.state = useState({'employee_id': null});
|
||||
this.lastParent = null;
|
||||
this._onEmployeeSubRedirect = onEmployeeSubRedirect();
|
||||
|
||||
onWillStart(this.handleComponentUpdate.bind(this));
|
||||
onWillRender(this.handleComponentUpdate.bind(this));
|
||||
}
|
||||
|
||||
/**
|
||||
* Called on start and on render
|
||||
*/
|
||||
async handleComponentUpdate() {
|
||||
this.employee = this.props.record.data;
|
||||
// the widget is either dispayed in the context of a hr.employee form or a res.users form
|
||||
this.state.employee_id = this.employee.employee_ids !== undefined ? this.employee.employee_ids.resIds[0] : this.props.record.resId;
|
||||
const manager = this.employee.parent_id || this.employee.employee_parent_id;
|
||||
const forceReload = this.lastRecord !== this.props.record || this.lastParent != manager;
|
||||
this.lastParent = manager;
|
||||
this.lastRecord = this.props.record;
|
||||
await this.fetchEmployeeData(this.state.employee_id, forceReload);
|
||||
}
|
||||
|
||||
async fetchEmployeeData(employeeId, force = false) {
|
||||
if (!employeeId) {
|
||||
this.managers = [];
|
||||
this.children = [];
|
||||
if (this.view_employee_id) {
|
||||
this.render(true);
|
||||
}
|
||||
this.view_employee_id = null;
|
||||
} else if (employeeId !== this.view_employee_id || force) {
|
||||
this.view_employee_id = employeeId;
|
||||
let orgData = await this.rpc(
|
||||
'/hr/get_org_chart',
|
||||
{
|
||||
employee_id: employeeId,
|
||||
context: this.user.context,
|
||||
}
|
||||
);
|
||||
if (Object.keys(orgData).length === 0) {
|
||||
orgData = {
|
||||
managers: [],
|
||||
children: [],
|
||||
}
|
||||
}
|
||||
this.managers = orgData.managers;
|
||||
this.children = orgData.children;
|
||||
this.managers_more = orgData.managers_more;
|
||||
this.self = orgData.self;
|
||||
this.render(true);
|
||||
}
|
||||
}
|
||||
|
||||
_onOpenPopover(event, employee) {
|
||||
this.popover.open(event.currentTarget, { employee });
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirect to the employee form view.
|
||||
*
|
||||
* @private
|
||||
* @param {MouseEvent} event
|
||||
* @returns {Promise} action loaded
|
||||
*/
|
||||
async _onEmployeeRedirect(employeeId) {
|
||||
const action = await this.orm.call('hr.employee', 'get_formview_action', [employeeId]);
|
||||
this.actionService.doAction(action);
|
||||
}
|
||||
|
||||
async _onEmployeeMoreManager(managerId) {
|
||||
await this.fetchEmployeeData(managerId);
|
||||
this.state.employee_id = managerId;
|
||||
}
|
||||
}
|
||||
|
||||
HrOrgChart.template = 'hr_org_chart.hr_org_chart';
|
||||
|
||||
export const hrOrgChart = {
|
||||
component: HrOrgChart,
|
||||
};
|
||||
|
||||
registry.category("fields").add("hr_org_chart", hrOrgChart);
|
56
static/src/fields/hr_org_chart.scss
Normal file
56
static/src/fields/hr_org_chart.scss
Normal file
@ -0,0 +1,56 @@
|
||||
|
||||
#o_employee_right {
|
||||
@include media-breakpoint-up(lg) {
|
||||
border-left: $border-width solid $o-form-separator-color;
|
||||
}
|
||||
|
||||
.o_org_chart_entry {
|
||||
.o_media_object {
|
||||
width: $o-hr-org-chart-entry-pic-small-size;
|
||||
height: $o-hr-org-chart-entry-pic-small-size;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
&.o_org_chart_entry_self .o_media_object {
|
||||
width: $o-hr-org-chart-entry-pic-size;
|
||||
height: $o-hr-org-chart-entry-pic-size;
|
||||
}
|
||||
|
||||
&:not(.o_org_chart_entry_self):hover .o_media_object {
|
||||
box-shadow: 0 0 0 $border-width*2 $info;
|
||||
}
|
||||
}
|
||||
|
||||
.o_org_chart_entry_self_container.o_org_chart_has_managers {
|
||||
margin-left: $o-hr-org-chart-entry-pic-small-size * .25;
|
||||
}
|
||||
|
||||
.o_org_chart_group_down.o_org_chart_has_managers {
|
||||
padding-left: $o-hr-org-chart-entry-pic-size * .6;
|
||||
}
|
||||
|
||||
// ORGANIGRAM LINES
|
||||
.o_org_chart_group_up .o_treeEntry {
|
||||
--treeEntry-padding-h: 0px;
|
||||
--treeEntry--before-top: 50%;
|
||||
--treeEntry--after-display: none;
|
||||
--treeEntry--beforeAfter-left: #{$o-hr-org-chart-entry-pic-small-size * .5};
|
||||
}
|
||||
|
||||
.o_org_chart_entry_self_container .o_treeEntry {
|
||||
--treeEntry-padding-h: #{$o-hr-org-chart-entry-pic-small-size * .5};
|
||||
--treeEntry-padding-v: #{$o-hr-org-chart-entry-pic-size * .25};
|
||||
}
|
||||
|
||||
.o_org_chart_group_down .o_treeEntry {
|
||||
--treeEntry-padding-h: #{$o-hr-org-chart-entry-pic-size};
|
||||
--treeEntry-padding-v: #{$o-hr-org-chart-entry-pic-small-size * .5};
|
||||
}
|
||||
}
|
||||
|
||||
// Right to Left specific style to flip the popover arrow
|
||||
.o_rtl .o_org_chart_popup.popover .arrow {
|
||||
left: 100%;
|
||||
transform: matrix(-1, 0, 0, 1, 0, 0);
|
||||
}
|
176
static/src/fields/hr_org_chart.xml
Normal file
176
static/src/fields/hr_org_chart.xml
Normal file
@ -0,0 +1,176 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
|
||||
<t t-name="hr_org_chart.hr_org_chart_employee">
|
||||
<t t-set="is_self" t-value="employee.id == view_employee_id"/>
|
||||
|
||||
<section t-if="employee_type == 'self'" t-attf-class="o_org_chart_entry_self_container #{managers.length > 0 ? 'o_org_chart_has_managers' : ''}">
|
||||
<div t-attf-class="o_org_chart_entry o_org_chart_entry_#{employee_type} d-flex position-relative py-2 overflow-visible #{managers.length > 0 ? 'o_treeEntry' : ''}">
|
||||
<t t-call="hr_org_chart.hr_org_chart_employee_content">
|
||||
<t t-set="is_self" t-value="is_self"/>
|
||||
</t>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div t-else="" t-attf-class="o_org_chart_entry o_org_chart_entry_#{employee_type} o_treeEntry d-flex position-relative py-2 overflow-visible">
|
||||
<t t-call="hr_org_chart.hr_org_chart_employee_content">
|
||||
<t t-set="is_self" t-value="is_self"/>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
<t t-name="hr_org_chart.hr_org_chart_employee_content">
|
||||
<div class="o_media_left position-relative">
|
||||
<!-- NOTE: Since by the default on not squared images odoo add white borders,
|
||||
use bg-images to get a clean and centred images -->
|
||||
<a t-if="! is_self"
|
||||
class="o_media_object d-block rounded o_employee_redirect"
|
||||
t-att-style="'background-image:url(\'/web/image/hr.employee.public/' + employee.id + '/avatar_1024/\')'"
|
||||
t-att-alt="employee.name"
|
||||
t-att-data-employee-id="employee.id"
|
||||
t-att-href="employee.link"
|
||||
t-on-click.prevent="() => this._onEmployeeRedirect(employee.id)"/>
|
||||
<div t-if="is_self"
|
||||
class="o_media_object d-block rounded border border-info"
|
||||
t-att-style="'background-image:url(\'/web/image/hr.employee.public/' + employee.id + '/avatar_1024/\')'"/>
|
||||
</div>
|
||||
|
||||
<div class="d-flex flex-grow-1 align-items-center justify-content-between position-relative px-3">
|
||||
<a t-if="!is_self" t-att-href="employee.link" class="o_employee_redirect d-flex flex-column" t-att-data-employee-id="employee.id" t-on-click.prevent="() => this._onEmployeeRedirect(employee.id)">
|
||||
<b class="o_media_heading m-0 fs-6" t-esc="employee.name"/>
|
||||
<small class="text-muted fw-bold" t-esc="employee.job_title"/>
|
||||
</a>
|
||||
<div t-if="is_self" class="d-flex flex-column">
|
||||
<h5 class="o_media_heading m-0" t-esc="employee.name"/>
|
||||
<small class="text-muted fw-bold" t-esc="employee.job_title"/>
|
||||
</div>
|
||||
<button t-if="employee.indirect_sub_count > 0"
|
||||
class="btn p-0 fs-3"
|
||||
tabindex="0"
|
||||
t-att-data-emp-name="employee.name"
|
||||
t-att-data-emp-id="employee.id"
|
||||
t-att-data-emp-dir-subs="employee.direct_sub_count"
|
||||
t-att-data-emp-ind-subs="employee.indirect_sub_count"
|
||||
data-bs-trigger="focus"
|
||||
data-bs-toggle="popover"
|
||||
t-on-click="(event) => this._onOpenPopover(event, employee)">
|
||||
<a href="#"
|
||||
t-attf-class="badge rounded-pill bg-300 border {{employee.indirect_sub_count < 10 ? 'px-2' : 'px-1' }}"
|
||||
t-esc="employee.indirect_sub_count"
|
||||
/>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
</t>
|
||||
|
||||
<t t-name="hr_org_chart.hr_org_chart">
|
||||
<!-- NOTE: Desidered behaviour:
|
||||
The maximun number of people is always 7 (including 'self'). Managers have priority over suburdinates
|
||||
Eg. 1 Manager + 1 self = show just 5 subordinates (if availables)
|
||||
Eg. 0 Manager + 1 self = show 6 subordinates (if available)
|
||||
|
||||
-->
|
||||
<t t-set="emp_count" t-value="0"/>
|
||||
<div t-if='managers.length > 0' class="o_org_chart_group_up position-relative">
|
||||
<div t-if='managers_more' class="o_org_chart_more pe-3">
|
||||
<a href="#" t-att-data-employee-id="managers[0].id" class="o_employee_more_managers d-block bg-100 px-3" t-on-click.prevent="() => this._onEmployeeMoreManager(managers[0].id)">
|
||||
<i class="fa fa-angle-double-up" role="img" aria-label="More managers" title="More managers"/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<t t-foreach="managers" t-as="employee" t-key="employee_index">
|
||||
<t t-set="emp_count" t-value="emp_count + 1"/>
|
||||
<t t-call="hr_org_chart.hr_org_chart_employee">
|
||||
<t t-set="employee_type" t-value="'manager'"/>
|
||||
</t>
|
||||
</t>
|
||||
</div>
|
||||
|
||||
<t t-if="children.length || managers.length" t-call="hr_org_chart.hr_org_chart_employee">
|
||||
<t t-set="employee_type" t-value="'self'"/>
|
||||
<t t-set="employee" t-value="self"/>
|
||||
</t>
|
||||
|
||||
<t t-if="!children.length && !managers.length">
|
||||
<div class="alert alert-info" role="alert">
|
||||
<p><b>No hierarchy position.</b></p>
|
||||
<p>This employee has no manager or subordinate.</p>
|
||||
<p>In order to get an organigram, set a manager and save the record.</p>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
<div t-if="children.length" t-attf-class="o_org_chart_group_down position-relative #{managers.length > 0 ? 'o_org_chart_has_managers' : ''}">
|
||||
<t t-foreach="children" t-as="employee" t-key="employee_index">
|
||||
<t t-set="emp_count" t-value="emp_count + 1"/>
|
||||
<t t-if="emp_count < 20">
|
||||
<t t-call="hr_org_chart.hr_org_chart_employee">
|
||||
<t t-set="employee_type" t-value="'sub'"/>
|
||||
</t>
|
||||
</t>
|
||||
</t>
|
||||
|
||||
<t t-if="(children.length + managers.length) > 19">
|
||||
<div class="o_org_chart_entry o_org_chart_more d-flex overflow-visible">
|
||||
<div class="o_media_left position-relative">
|
||||
<a href="#"
|
||||
t-att-data-employee-id="self.id"
|
||||
t-att-data-employee-name="self.name"
|
||||
class="o_org_chart_show_more o_employee_sub_redirect btn btn-link ps-2"
|
||||
t-on-click.prevent="_onEmployeeSubRedirect">See All</a>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
<t t-name="hr_org_chart.hr_orgchart_emp_popover">
|
||||
<div class="popover o_org_chart_popup" role="tooltip">
|
||||
<div class="tooltip-arrow">
|
||||
|
||||
</div>
|
||||
<h3 class="popover-header">
|
||||
<div class="d-flex align-items-center">
|
||||
<span class="flex-shrink-0" t-att-style='"background-image:url(\"/web/image/hr.employee.public/" + props.employee.id + "/avatar_1024/\")"'/>
|
||||
<b class="flew-grow-1"><t t-esc="props.employee.name"/></b>
|
||||
<a href="#" class="ms-auto o_employee_redirect" t-att-data-employee-id="props.employee.id" t-on-click.prevent="() => this._onEmployeeRedirect(props.employee.id)"><i class="fa fa-external-link" role="img" aria-label='Redirect' title="Redirect"></i></a>
|
||||
</div>
|
||||
</h3>
|
||||
<div class="popover-body">
|
||||
<table class="table table-sm table-borderless mb-0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="text-end"><b t-esc="props.employee.direct_sub_count"/></td>
|
||||
<td>
|
||||
<a href="#" class="o_employee_sub_redirect" data-type='direct'
|
||||
t-att-data-employee-name="props.employee.name" t-att-data-employee-id="props.employee.id"
|
||||
t-on-click.prevent="_onEmployeeSubRedirect">
|
||||
<b>Direct subordinates</b></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-end">
|
||||
<b t-esc="props.employee.indirect_sub_count - props.employee.direct_sub_count"/>
|
||||
</td>
|
||||
<td>
|
||||
<a href="#" class="o_employee_sub_redirect" data-type='indirect'
|
||||
t-att-data-employee-name="props.employee.name" t-att-data-employee-id="props.employee.id"
|
||||
t-on-click.prevent="_onEmployeeSubRedirect">
|
||||
Indirect subordinates</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-end"><b t-esc="props.employee.indirect_sub_count"/></td>
|
||||
<td>
|
||||
<a href="#" class="o_employee_sub_redirect" data-type='total'
|
||||
t-att-data-employee-name="props.employee.name" t-att-data-employee-id="props.employee.id"
|
||||
t-on-click.prevent="_onEmployeeSubRedirect">
|
||||
Total</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
</templates>
|
6
static/src/scss/variables.scss
Normal file
6
static/src/scss/variables.scss
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
$o-hr-org-chart-entry-pic-size: 46px;
|
||||
$o-hr-org-chart-entry-pic-small-size: $o-hr-org-chart-entry-pic-size * .8;
|
||||
|
||||
|
||||
|
@ -0,0 +1,7 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import { HierarchyCard } from "@web_hierarchy/hierarchy_card";
|
||||
|
||||
export class HrEmployeeHierarchyCard extends HierarchyCard {
|
||||
static template = "hr_org_chart.HrEmployeeHierarchyCard";
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<templates>
|
||||
|
||||
<t t-name="hr_org_chart.HrEmployeeHierarchyCard" t-inherit="web_hierarchy.HierarchyCard">
|
||||
<xpath expr="//button[@name='hierarchy_search_subsidiaries']" position="attributes">
|
||||
<attribute name="class" separator=" " remove="d-grid"/>
|
||||
<attribute name="class" separator=" " remove="rounded-0"/>
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='hierarchy_search_subsidiaries']" position="inside">
|
||||
<t t-out="props.node.childResIds.length"/> people
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='hierarchy_search_subsidiaries']/t[@t-if]" position="replace">
|
||||
<t t-if="!props.node.nodes.length">
|
||||
<i class="fa fa-fw fa-caret-right"/>
|
||||
</t>
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='hierarchy_search_subsidiaries']/t[@t-else]" position="replace">
|
||||
<t t-else="">
|
||||
<i class="fa fa-fw fa-caret-down"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</t>
|
||||
|
||||
</templates>
|
@ -0,0 +1,15 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { Avatar } from "@mail/views/web/fields/avatar/avatar";
|
||||
|
||||
import { HierarchyRenderer } from "@web_hierarchy/hierarchy_renderer";
|
||||
import { HrEmployeeHierarchyCard } from "./hr_employee_hierarchy_card";
|
||||
|
||||
export class HrEmployeeHierarchyRenderer extends HierarchyRenderer {
|
||||
static template = "hr_org_chart.HrEmployeeHierarchyRenderer";
|
||||
static components = {
|
||||
...HierarchyRenderer.components,
|
||||
HierarchyCard: HrEmployeeHierarchyCard,
|
||||
Avatar,
|
||||
};
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
.o_hierarchy_renderer {
|
||||
.o_hierarchy_parent_node_container {
|
||||
.o_avatar > span {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<templates>
|
||||
|
||||
<t t-name="hr_org_chart.HrEmployeeHierarchyRenderer" t-inherit="web_hierarchy.HierarchyRenderer">
|
||||
<xpath expr="//div[hasclass('o_hierarchy_parent_node_container')]/span" position="replace">
|
||||
<Avatar
|
||||
resModel="row.parentNode.model.resModel"
|
||||
resId="row.parentNode.resId"
|
||||
displayName="row.parentNode.data.name"
|
||||
/>
|
||||
</xpath>
|
||||
</t>
|
||||
|
||||
</templates>
|
@ -0,0 +1,12 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import { hierarchyView } from "@web_hierarchy/hierarchy_view";
|
||||
import { HrEmployeeHierarchyRenderer } from "./hr_employee_hierarchy_renderer";
|
||||
|
||||
export const hrEmployeeHierarchyView = {
|
||||
...hierarchyView,
|
||||
Renderer: HrEmployeeHierarchyRenderer,
|
||||
};
|
||||
|
||||
registry.category("views").add("hr_employee_hierarchy", hrEmployeeHierarchyView);
|
147
static/tests/hr_employee_hierarchy_view_tests.js
Normal file
147
static/tests/hr_employee_hierarchy_view_tests.js
Normal file
@ -0,0 +1,147 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import { click, getFixture } from "@web/../tests/helpers/utils";
|
||||
import { makeView, setupViewRegistries } from "@web/../tests/views/helpers";
|
||||
|
||||
let serverData, target;
|
||||
|
||||
const serviceRegistry = registry.category("services");
|
||||
|
||||
QUnit.module("Views", (hooks) => {
|
||||
hooks.beforeEach(() => {
|
||||
serviceRegistry.add("mail.thread", { start() {} });
|
||||
serverData = {
|
||||
models: {
|
||||
"hr.employee": {
|
||||
fields: {
|
||||
parent_id: { string: "Manager", type: "many2one", relation: "hr.employee" },
|
||||
name: { string: "Name" },
|
||||
child_ids: {
|
||||
string: "Subordinates",
|
||||
type: "one2many",
|
||||
relation: "hr.employee",
|
||||
relation_field: "parent_id",
|
||||
},
|
||||
},
|
||||
records: [
|
||||
{ id: 1, name: "Albert", parent_id: false, child_ids: [2, 3] },
|
||||
{ id: 2, name: "Georges", parent_id: 1, child_ids: [] },
|
||||
{ id: 3, name: "Josephine", parent_id: 1, child_ids: [4] },
|
||||
{ id: 4, name: "Louis", parent_id: 3, child_ids: [] },
|
||||
],
|
||||
},
|
||||
},
|
||||
views: {
|
||||
"hr.employee,false,hierarchy": `
|
||||
<hierarchy child_field="child_ids" js_class="hr_employee_hierarchy">
|
||||
<field name="child_ids" invisible="1"/>
|
||||
<templates>
|
||||
<t t-name="hierarchy-box">
|
||||
<div class="o_hierarchy_node_header">
|
||||
<field name="name"/>
|
||||
</div>
|
||||
<div class="o_hierarchy_node_body">
|
||||
<field name="parent_id"/>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
</hierarchy>
|
||||
`,
|
||||
"hr.employee,false,form": `
|
||||
<form>
|
||||
<sheet>
|
||||
<group>
|
||||
<field name="name"/>
|
||||
<field name="parent_id"/>
|
||||
</group>
|
||||
</sheet>
|
||||
</form>
|
||||
`,
|
||||
},
|
||||
};
|
||||
setupViewRegistries();
|
||||
target = getFixture();
|
||||
});
|
||||
|
||||
QUnit.module("HrEmployeeHierarchy View");
|
||||
|
||||
QUnit.test("load hierarchy view", async function (assert) {
|
||||
await makeView({
|
||||
type: "hierarchy",
|
||||
resModel: "hr.employee",
|
||||
serverData,
|
||||
});
|
||||
|
||||
assert.containsOnce(target, ".o_hierarchy_view");
|
||||
assert.containsN(target, ".o_hierarchy_button_add", 2);
|
||||
assert.containsOnce(target, ".o_hierarchy_view .o_hierarchy_renderer");
|
||||
assert.containsOnce(
|
||||
target,
|
||||
".o_hierarchy_view .o_hierarchy_renderer > .o_hierarchy_container"
|
||||
);
|
||||
assert.containsN(target, ".o_hierarchy_row", 2);
|
||||
assert.containsOnce(target, ".o_hierarchy_separator");
|
||||
assert.containsN(target, ".o_hierarchy_line_part", 2);
|
||||
assert.containsOnce(target, ".o_hierarchy_line_left");
|
||||
assert.containsOnce(target, ".o_hierarchy_line_right");
|
||||
assert.containsN(target, ".o_hierarchy_node_container", 3);
|
||||
assert.containsN(target, ".o_hierarchy_node", 3);
|
||||
assert.containsN(target, ".o_hierarchy_node_button", 2);
|
||||
assert.containsOnce(target, ".o_hierarchy_node_button.btn-primary");
|
||||
assert.containsNone(
|
||||
target,
|
||||
".o_hierarchy_node_button.btn-primary.d-grid",
|
||||
"'d-grid' class has been removed in that js_class"
|
||||
);
|
||||
assert.containsNone(
|
||||
target,
|
||||
".o_hierarchy_node_button.btn-primary.rounded-0",
|
||||
"'d-grid' class has been removed in that js_class"
|
||||
);
|
||||
assert.containsNone(
|
||||
target,
|
||||
".o_hierarchy_node_button.btn-primary .o_hierarchy_icon",
|
||||
"the icon has been replaced in that js_class"
|
||||
);
|
||||
assert.containsOnce(
|
||||
target,
|
||||
".o_hierarchy_node_button.btn-primary .fa-caret-right",
|
||||
"the icon has been replaced in that js_class"
|
||||
);
|
||||
assert.strictEqual(
|
||||
target.querySelector(".o_hierarchy_node_button.btn-primary").textContent.trim(),
|
||||
"1 people"
|
||||
);
|
||||
// check nodes in each row
|
||||
const row = target.querySelector(".o_hierarchy_row");
|
||||
assert.containsOnce(row, ".o_hierarchy_node");
|
||||
assert.strictEqual(row.querySelector(".o_hierarchy_node_content").textContent, "Albert");
|
||||
assert.containsOnce(target, ".o_hierarchy_node_button.btn-secondary");
|
||||
assert.containsOnce(target, ".o_hierarchy_node_button.btn-secondary .fa-caret-down");
|
||||
assert.strictEqual(
|
||||
target.querySelector(".o_hierarchy_node_button.btn-secondary").textContent.trim(),
|
||||
"2 people"
|
||||
);
|
||||
});
|
||||
|
||||
QUnit.test(
|
||||
"display the avatar of the parent when there is more than one node in the same row of the parent",
|
||||
async function (assert) {
|
||||
await makeView({
|
||||
type: "hierarchy",
|
||||
resModel: "hr.employee",
|
||||
serverData,
|
||||
});
|
||||
|
||||
assert.containsN(target, ".o_hierarchy_row", 2);
|
||||
assert.containsOnce(target, ".o_hierarchy_node_button.btn-primary");
|
||||
await click(target, ".o_hierarchy_node_button.btn-primary");
|
||||
assert.containsN(target, ".o_hierarchy_row", 3);
|
||||
assert.containsN(target, ".o_hierarchy_node", 4);
|
||||
assert.containsN(target, ".o_hierarchy_separator", 2);
|
||||
assert.containsOnce(target, ".o_hierarchy_parent_node_container .o_avatar");
|
||||
assert.strictEqual(target.querySelector(".o_avatar").textContent, "Josephine");
|
||||
}
|
||||
);
|
||||
});
|
191
static/tests/hr_org_chart_tests.js
Normal file
191
static/tests/hr_org_chart_tests.js
Normal file
@ -0,0 +1,191 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { getFixture } from "@web/../tests/helpers/utils";
|
||||
import { makeView, setupViewRegistries } from "@web/../tests/views/helpers";
|
||||
|
||||
let target;
|
||||
let serverData;
|
||||
|
||||
QUnit.module("hr_org_chart", {
|
||||
async beforeEach() {
|
||||
target = getFixture();
|
||||
serverData = {
|
||||
models: {
|
||||
hr_employee: {
|
||||
fields: {
|
||||
child_ids: {string: "one2many Subordinates field", type: "one2many", relation: 'hr_employee'},
|
||||
},
|
||||
records: [{
|
||||
id: 1,
|
||||
child_ids: [],
|
||||
}]
|
||||
},
|
||||
},
|
||||
};
|
||||
setupViewRegistries();
|
||||
},
|
||||
}, function () {
|
||||
QUnit.test("hr org chart: empty render", async function (assert) {
|
||||
assert.expect(2);
|
||||
|
||||
await makeView({
|
||||
type: "form",
|
||||
resModel: 'hr_employee',
|
||||
serverData: serverData,
|
||||
arch:
|
||||
'<form>' +
|
||||
'<field name="child_ids" widget="hr_org_chart"/>' +
|
||||
'</form>',
|
||||
resId: 1,
|
||||
mockRPC: function (route, args) {
|
||||
if (route === '/hr/get_org_chart') {
|
||||
assert.ok('employee_id' in args, "it should have 'employee_id' as argument");
|
||||
return Promise.resolve({
|
||||
children: [],
|
||||
managers: [],
|
||||
managers_more: false,
|
||||
});
|
||||
} else if (route === '/hr/get_redirect_model') {
|
||||
return Promise.resolve('hr.employee');
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.strictEqual($(target.querySelector('[name="child_ids"]')).children().length, 1,
|
||||
"the chart should have 1 child");
|
||||
});
|
||||
QUnit.test("hr org chart: render without data", async function (assert) {
|
||||
assert.expect(2);
|
||||
|
||||
await makeView({
|
||||
type: "form",
|
||||
resModel: 'hr_employee',
|
||||
serverData: serverData,
|
||||
arch:
|
||||
'<form>' +
|
||||
'<field name="child_ids" widget="hr_org_chart"/>' +
|
||||
'</form>',
|
||||
resId: 1,
|
||||
mockRPC: function (route, args) {
|
||||
if (route === '/hr/get_org_chart') {
|
||||
assert.ok('employee_id' in args, "it should have 'employee_id' as argument");
|
||||
return Promise.resolve({}); // return no data
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.strictEqual($(target.querySelector('[name="child_ids"]')).children().length, 1,
|
||||
"the chart should have 1 child");
|
||||
});
|
||||
QUnit.test("hr org chart: basic render", async function (assert) {
|
||||
assert.expect(3);
|
||||
|
||||
await makeView({
|
||||
type: "form",
|
||||
resModel: 'hr_employee',
|
||||
serverData: serverData,
|
||||
arch:
|
||||
'<form>' +
|
||||
'<sheet>' +
|
||||
'<div id="o_employee_container"><div id="o_employee_main">' +
|
||||
'<div id="o_employee_right">' +
|
||||
'<field name="child_ids" widget="hr_org_chart"/>' +
|
||||
'</div>' +
|
||||
'</div></div>' +
|
||||
'</sheet>' +
|
||||
'</form>',
|
||||
resId: 1,
|
||||
mockRPC: function (route, args) {
|
||||
if (route === '/hr/get_org_chart') {
|
||||
assert.ok('employee_id' in args, "it should have 'employee_id' as argument");
|
||||
return Promise.resolve({
|
||||
children: [{
|
||||
direct_sub_count: 0,
|
||||
indirect_sub_count: 0,
|
||||
job_id: 2,
|
||||
job_name: 'Sub-Gooroo',
|
||||
link: 'fake_link',
|
||||
name: 'Michael Hawkins',
|
||||
id: 2,
|
||||
}],
|
||||
managers: [],
|
||||
managers_more: false,
|
||||
self: {
|
||||
direct_sub_count: 1,
|
||||
id: 1,
|
||||
indirect_sub_count: 1,
|
||||
job_id: 1,
|
||||
job_name: 'Gooroo',
|
||||
link: 'fake_link',
|
||||
name: 'Antoine Langlais',
|
||||
}
|
||||
});
|
||||
} else if (route === '/hr/get_redirect_model') {
|
||||
return Promise.resolve('hr.employee');
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.containsOnce(target, '.o_org_chart_entry_sub',
|
||||
"the chart should have 1 subordinate");
|
||||
assert.containsOnce(target, '.o_org_chart_entry_self',
|
||||
"the current employee should only be displayed once in the chart");
|
||||
});
|
||||
QUnit.test("hr org chart: basic manager render", async function (assert) {
|
||||
assert.expect(4);
|
||||
|
||||
await makeView({
|
||||
type: "form",
|
||||
resModel: 'hr_employee',
|
||||
serverData: serverData,
|
||||
arch:
|
||||
'<form>' +
|
||||
'<sheet>' +
|
||||
'<div id="o_employee_container"><div id="o_employee_main">' +
|
||||
'<div id="o_employee_right">' +
|
||||
'<field name="child_ids" widget="hr_org_chart"/>' +
|
||||
'</div>' +
|
||||
'</div></div>' +
|
||||
'</sheet>' +
|
||||
'</form>',
|
||||
resId: 1,
|
||||
mockRPC: function (route, args) {
|
||||
if (route === '/hr/get_org_chart') {
|
||||
assert.ok('employee_id' in args, "should have 'employee_id' as argument");
|
||||
return Promise.resolve({
|
||||
children: [{
|
||||
direct_sub_count: 0,
|
||||
indirect_sub_count: 0,
|
||||
job_id: 2,
|
||||
job_name: 'Sub-Gooroo',
|
||||
link: 'fake_link',
|
||||
name: 'Michael Hawkins',
|
||||
id: 2,
|
||||
}],
|
||||
managers: [{
|
||||
direct_sub_count: 1,
|
||||
id: 1,
|
||||
indirect_sub_count: 2,
|
||||
job_id: 1,
|
||||
job_name: 'Chief Gooroo',
|
||||
link: 'fake_link',
|
||||
name: 'Antoine Langlais',
|
||||
}],
|
||||
managers_more: false,
|
||||
self: {
|
||||
direct_sub_count: 1,
|
||||
id: 1,
|
||||
indirect_sub_count: 1,
|
||||
job_id: 3,
|
||||
job_name: 'Gooroo',
|
||||
link: 'fake_link',
|
||||
name: 'John Smith',
|
||||
}
|
||||
});
|
||||
} else if (route === '/hr/get_redirect_model') {
|
||||
return Promise.resolve('hr.employee');
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.containsOnce(target, '.o_org_chart_group_up .o_org_chart_entry_manager', "the chart should have 1 manager");
|
||||
assert.containsOnce(target, '.o_org_chart_group_down .o_org_chart_entry_sub', "the chart should have 1 subordinate");
|
||||
assert.containsOnce(target, '.o_org_chart_entry_self', "the chart should have only once the current employee");
|
||||
});
|
||||
});
|
5
tests/__init__.py
Normal file
5
tests/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_employee
|
||||
from . import test_employee_deletion
|
109
tests/test_employee.py
Normal file
109
tests/test_employee.py
Normal file
@ -0,0 +1,109 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.hr.tests.common import TestHrCommon
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestEmployee(TestHrCommon):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.employee_georges, cls.employee_paul, cls.employee_pierre = cls.env['hr.employee'].with_user(cls.res_users_hr_officer).create([
|
||||
{'name': 'Georges'},
|
||||
{'name': 'Paul'},
|
||||
{'name': 'Pierre'},
|
||||
])
|
||||
|
||||
def test_is_subordinate(self):
|
||||
self.res_users_hr_officer.employee_id = self.employee_georges
|
||||
self.employee_paul.parent_id = self.employee_georges
|
||||
employees = self.employee_paul + self.employee_pierre
|
||||
self.assertTrue(
|
||||
self.employee_paul.is_subordinate,
|
||||
'Paul should be a subordinate of the current user since the current is his manager.')
|
||||
self.assertFalse(
|
||||
self.employee_pierre.is_subordinate,
|
||||
'Pierre should not be a subordinate of the current user since Pierre has no manager.')
|
||||
|
||||
self.assertEqual(employees.filtered_domain(employees._search_is_subordinate('=', True)), self.employee_paul)
|
||||
self.assertEqual(employees.filtered_domain(employees._search_is_subordinate('=', False)), self.employee_pierre)
|
||||
|
||||
self.employee_pierre.parent_id = self.employee_paul
|
||||
self.assertTrue(
|
||||
self.employee_paul.is_subordinate,
|
||||
'Paul should be a subordinate of the current user since the current is his manager.')
|
||||
self.assertTrue(
|
||||
self.employee_pierre.is_subordinate,
|
||||
"Pierre should now be a subordinate of the current user since Paul is his manager and the current user is the Paul's manager.")
|
||||
|
||||
self.assertEqual(employees.filtered_domain(employees._search_is_subordinate('=', True)), employees)
|
||||
self.assertFalse(employees.filtered_domain(employees._search_is_subordinate('=', False)))
|
||||
|
||||
self.employee_paul.parent_id = False
|
||||
employees._compute_is_subordinate()
|
||||
|
||||
self.assertFalse(
|
||||
self.employee_paul.is_subordinate,
|
||||
'Paul should no longer be a subordinate of the current user since Paul has no manager.')
|
||||
self.assertFalse(
|
||||
self.employee_pierre.is_subordinate,
|
||||
"Pierre should not be a subordinate of the current user since Paul is his manager and the current user is not the Paul's manager.")
|
||||
|
||||
self.assertFalse(employees.filtered_domain(employees._search_is_subordinate('=', True)))
|
||||
self.assertEqual(employees.filtered_domain(employees._search_is_subordinate('=', False)), employees)
|
||||
|
||||
def test_hierarchy_read(self):
|
||||
HrEmployee = self.env['hr.employee']
|
||||
employees = self.employee_georges + self.employee_paul + self.employee_pierre
|
||||
result = HrEmployee.hierarchy_read([('id', 'in', employees.ids)], ['id'], 'parent_id')
|
||||
for emp in employees:
|
||||
self.assertIn({'id': emp.id, 'parent_id': False}, result)
|
||||
|
||||
self.employee_georges.parent_id = self.employee_paul
|
||||
self.employee_pierre.parent_id = self.employee_paul
|
||||
result = HrEmployee.hierarchy_read([('id', 'in', employees.ids)], ['id'], 'parent_id')
|
||||
self.assertEqual(len(result), 3)
|
||||
for emp in employees:
|
||||
emp_dict = {'id': emp.id, 'parent_id': emp.parent_id.id and (emp.parent_id.id, emp.parent_id.display_name)}
|
||||
if not emp.parent_id:
|
||||
emp_dict['__child_ids__'] = [self.employee_georges.id, self.employee_pierre.id]
|
||||
self.assertIn(emp_dict, result)
|
||||
|
||||
employee_count = HrEmployee.search_count([('id', 'not in', employees.ids), ('parent_id', '=', False)])
|
||||
result = HrEmployee.hierarchy_read([('parent_id', '=', False)], ['id'], 'parent_id')
|
||||
self.assertEqual(len(result), 1 + employee_count)
|
||||
for employee_dict in result:
|
||||
self.assertFalse(employee_dict['parent_id'], "Each employee in the result should not have any parent set.")
|
||||
self.assertIn({'id': self.employee_paul.id, 'parent_id': False, '__child_ids__': [self.employee_georges.id, self.employee_pierre.id]}, result)
|
||||
|
||||
result = HrEmployee.hierarchy_read([('id', '=', self.employee_paul.id)], ['id'], 'parent_id')
|
||||
self.assertEqual(len(result), 3)
|
||||
for emp in employees:
|
||||
emp_dict = {'id': emp.id, 'parent_id': emp.parent_id.id and (emp.parent_id.id, emp.parent_id.display_name)}
|
||||
self.assertIn(emp_dict, result)
|
||||
|
||||
result = HrEmployee.hierarchy_read([('id', '=', self.employee_georges.id)], ['id'], 'parent_id')
|
||||
self.assertEqual(len(result), 3)
|
||||
for emp in employees:
|
||||
emp_dict = {'id': emp.id, 'parent_id': emp.parent_id.id and (emp.parent_id.id, emp.parent_id.display_name)}
|
||||
self.assertIn(emp_dict, result)
|
||||
|
||||
self.employee_pierre.parent_id = self.employee_georges
|
||||
result = HrEmployee.hierarchy_read([('id', '=', self.employee_georges.id)], ['id'], 'parent_id')
|
||||
self.assertEqual(len(result), 3)
|
||||
for emp in employees:
|
||||
emp_dict = {'id': emp.id, 'parent_id': emp.parent_id.id and (emp.parent_id.id, emp.parent_id.display_name)}
|
||||
self.assertIn(emp_dict, result)
|
||||
|
||||
result = HrEmployee.hierarchy_read([('id', '=', self.employee_pierre.id)], ['id'], 'parent_id')
|
||||
self.assertEqual(len(result), 2)
|
||||
self.assertIn(
|
||||
{'id': self.employee_pierre.id, 'parent_id': (self.employee_georges.id, self.employee_georges.name)},
|
||||
result
|
||||
)
|
||||
self.assertIn(
|
||||
{'id': self.employee_georges.id, 'parent_id': (self.employee_paul.id, self.employee_paul.name)},
|
||||
result
|
||||
)
|
39
tests/test_employee_deletion.py
Normal file
39
tests/test_employee_deletion.py
Normal file
@ -0,0 +1,39 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.tests import Form, tagged, TransactionCase
|
||||
from odoo.exceptions import MissingError
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestEmployeeDeletion(TransactionCase):
|
||||
|
||||
def test_employee_deletion(self):
|
||||
# Tests an issue with the form view where the employee could be deleted
|
||||
employee_a, employee_b = self.env['hr.employee'].create([
|
||||
{
|
||||
'name': 'A',
|
||||
},
|
||||
{
|
||||
'name': 'B',
|
||||
},
|
||||
])
|
||||
department_a, department_b = self.env['hr.department'].create([
|
||||
{
|
||||
'name': 'DEP A',
|
||||
'manager_id': employee_a.id,
|
||||
},
|
||||
{
|
||||
'name': 'DEP B',
|
||||
'manager_id': employee_b.id,
|
||||
},
|
||||
])
|
||||
employee_a.write({
|
||||
'parent_id': employee_a.id,
|
||||
'coach_id': employee_a.id,
|
||||
'department_id': department_a.id,
|
||||
})
|
||||
try:
|
||||
with Form(employee_a) as form:
|
||||
form.department_id = department_b
|
||||
except MissingError:
|
||||
self.fail('The employee should not have been deleted')
|
39
views/hr_department_views.xml
Normal file
39
views/hr_department_views.xml
Normal file
@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="hr_department_hierarchy_view" model="ir.ui.view">
|
||||
<field name="name">hr.departmnent.view.hierarchy</field>
|
||||
<field name="model">hr.department</field>
|
||||
<field name="arch" type="xml">
|
||||
<hierarchy child_field="child_ids" draggable="1">
|
||||
<field name="name" />
|
||||
<field name="color" />
|
||||
<field name="total_employee" />
|
||||
<templates>
|
||||
<t t-name="hierarchy-box">
|
||||
<div t-attf-class="o_hierarchy_node_header d-flex justify-content-center align-items-center o_hierarchy_node_color_{{ record.color.raw_value }}">
|
||||
<field name="name" />
|
||||
</div>
|
||||
<div class="o_hierarchy_node_body d-flex flex-column">
|
||||
<field name="manager_id" class="pt-1 ps-1" widget="many2one_avatar" />
|
||||
<div>
|
||||
<button class="btn btn-link" name="%(hr.act_employee_from_department)d" type="action">
|
||||
<t t-out="record.total_employee.raw_value"/> Employees
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
</hierarchy>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.hr_department_kanban_action" model="ir.actions.act_window">
|
||||
<field name="view_mode">kanban,tree,hierarchy,form</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.hr_department_tree_action" model="ir.actions.act_window">
|
||||
<field name="view_mode">tree,kanban,hierarchy,form</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
36
views/hr_employee_public_views.xml
Normal file
36
views/hr_employee_public_views.xml
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="hr_employee_public_hierarchy_view" model="ir.ui.view">
|
||||
<field name="name">hr.employee.public.hierarchy.view</field>
|
||||
<field name="model">hr.employee.public</field>
|
||||
<field name="arch" type="xml">
|
||||
<hierarchy child_field="child_ids" js_class="hr_employee_hierarchy" icon="fa-users" draggable="0">
|
||||
<field name="name" />
|
||||
<field name="job_id" />
|
||||
<field name="department_color" />
|
||||
<field name="hr_icon_display" />
|
||||
<field name="department_id" />
|
||||
<templates>
|
||||
<t t-name="hierarchy-box">
|
||||
<div t-attf-class="o_hierarchy_node_header d-flex justify-content-center pb-4 o_hierarchy_node_color_{{ record.department_color.raw_value }}"
|
||||
t-att-title="record.department_id.value"
|
||||
>
|
||||
<field name="image_1024" preview_image="image_128" options="{'zoom': true, 'zoom_delay': 1000}" widget="background_image" />
|
||||
</div>
|
||||
<div class="o_hierarchy_node_body d-flex flex-column text-center">
|
||||
<div class="w-100 position-relative">
|
||||
<field class="fw-bold" name="name" />
|
||||
<field name="hr_icon_display" class="d-flex align-items-end o_employee_availability" widget="hr_presence_status" />
|
||||
</div>
|
||||
<field name="job_id" />
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
</hierarchy>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.hr_employee_public_action" model="ir.actions.act_window">
|
||||
<field name="view_mode">kanban,tree,form,hierarchy</field>
|
||||
</record>
|
||||
</odoo>
|
13
views/hr_org_chart_menus.xml
Normal file
13
views/hr_org_chart_menus.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<menuitem
|
||||
id="menu_hr_employee_org_chart"
|
||||
name="Org Chart"
|
||||
action="action_hr_employee_org_chart"
|
||||
groups="hr.group_hr_user"
|
||||
parent="hr.menu_hr_employee_payroll"
|
||||
sequence="5"
|
||||
/>
|
||||
|
||||
</odoo>
|
104
views/hr_views.xml
Normal file
104
views/hr_views.xml
Normal file
@ -0,0 +1,104 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="action_hr_employee_org_chart" model="ir.actions.act_window">
|
||||
<field name="name">Org Chart</field>
|
||||
<field name="res_model">hr.employee</field>
|
||||
<field name="view_mode">hierarchy,kanban,tree,form,activity,graph,pivot</field>
|
||||
<field name="domain">[]</field>
|
||||
<field name="context">{'chat_icon': True}</field>
|
||||
<field name="view_id" eval="False"/>
|
||||
<field name="search_view_id" ref="hr.view_employee_filter"/>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_smiling_face">
|
||||
Add a new employee
|
||||
</p><p>
|
||||
With just a quick glance on the Odoo employee screen, you
|
||||
can easily find all the information you need for each person;
|
||||
contact data, job position, availability, etc.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_employee_view_form_inherit_org_chart" model="ir.ui.view">
|
||||
<field name="name">hr.employee.view.form.inherit.org_chart</field>
|
||||
<field name="model">hr.employee</field>
|
||||
<field name="inherit_id" ref="hr.view_employee_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@name='button_box']" position="inside">
|
||||
<button name="%(hr_org_chart.action_hr_employee_org_chart)d" icon="fa-users" type="action" context="{'hierarchy_res_id': id}" invisible="not parent_id and not child_ids">
|
||||
<div class="o_stat_info">
|
||||
<span class="o_stat_text">Org Chart</span>
|
||||
</div>
|
||||
</button>
|
||||
</xpath>
|
||||
<div id="o_work_employee_main" position="after">
|
||||
<div id="o_employee_right" class="col-lg-4 px-0 ps-lg-5 pe-lg-0">
|
||||
<separator string="Organization Chart"/>
|
||||
<field name="child_ids" class="position-relative" widget="hr_org_chart" readonly="1" nolabel="1"/>
|
||||
</div>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_employee_hierarchy_view" model="ir.ui.view">
|
||||
<field name="name">hr.employee.view.hierarchy</field>
|
||||
<field name="model">hr.employee</field>
|
||||
<field name="arch" type="xml">
|
||||
<hierarchy child_field="child_ids" js_class="hr_employee_hierarchy" icon="fa-users" draggable="1">
|
||||
<field name="name" />
|
||||
<field name="job_id" />
|
||||
<field name="department_color" />
|
||||
<field name="hr_icon_display" />
|
||||
<field name="department_id" />
|
||||
<templates>
|
||||
<t t-name="hierarchy-box">
|
||||
<div t-attf-class="o_hierarchy_node_header d-flex justify-content-center pb-4 o_hierarchy_node_color_{{ record.department_color.raw_value }}"
|
||||
t-att-title="record.department_id.value"
|
||||
>
|
||||
<field name="image_1024" preview_image="image_128" options="{'zoom': true, 'zoom_delay': 1000}" widget="background_image" />
|
||||
</div>
|
||||
<div class="o_hierarchy_node_body d-flex flex-column text-center">
|
||||
<div class="w-100 position-relative">
|
||||
<field class="fw-bold" name="name" />
|
||||
<field name="hr_icon_display" class="d-flex align-items-end o_employee_availability" widget="hr_presence_status" />
|
||||
</div>
|
||||
<field name="job_id" />
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
</hierarchy>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_employee_public_view_form_inherit_org_chart" model="ir.ui.view">
|
||||
<field name="name">hr.employee.public.view.form.inherit.org_chart</field>
|
||||
<field name="model">hr.employee.public</field>
|
||||
<field name="inherit_id" ref="hr.hr_employee_public_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@id='o_work_employee_main']" position="after">
|
||||
<div id="o_employee_right" class="col-lg-4 px-0 ps-lg-5">
|
||||
<separator string="Organization Chart"/>
|
||||
<field name="child_ids" class="position-relative" widget="hr_org_chart" readonly="1" nolabel="1"/>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="res_users_view_form" model="ir.ui.view">
|
||||
<field name="name">res.users.preferences.view.form.inherit.org_chart</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="hr.res_users_view_form_profile"/>
|
||||
<field name="arch" type="xml">
|
||||
<div id="o_work_employee_main" position="after">
|
||||
<div id="o_employee_right" class="col-lg-4 px-0 ps-lg-5">
|
||||
<separator string="Organization Chart"/>
|
||||
<field name="child_ids" class="position-relative" widget="hr_org_chart" readonly="1" nolabel="1"/>
|
||||
</div>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.open_view_employee_list_my" model="ir.actions.act_window">
|
||||
<field name="view_mode">kanban,tree,form,activity,graph,pivot,hierarchy</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user