Начальное наполнение
This commit is contained in:
parent
99456c3c89
commit
1bc0d795bd
4
__init__.py
Normal file
4
__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
31
__manifest__.py
Normal file
31
__manifest__.py
Normal file
@ -0,0 +1,31 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
{
|
||||
'name': "HR Attendance Holidays",
|
||||
'summary': """Attendance Holidays""",
|
||||
'category': 'Human Resources',
|
||||
'description': """
|
||||
Convert employee's extra hours to leave allocations.
|
||||
""",
|
||||
'version': '1.0',
|
||||
'depends': ['hr_attendance', 'hr_holidays'],
|
||||
'auto_install': True,
|
||||
'data': [
|
||||
'views/hr_leave_allocation_views.xml',
|
||||
'views/hr_leave_type_views.xml',
|
||||
'views/hr_leave_views.xml',
|
||||
'views/hr_employee_views.xml',
|
||||
'views/res_users_views.xml',
|
||||
'views/hr_leave_accrual_level_views.xml',
|
||||
'data/hr_holidays_attendance_data.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/hr_holidays_attendance_demo.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'hr_holidays_attendance/static/src/xml/time_off_calendar.xml',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
19
data/hr_holidays_attendance_data.xml
Normal file
19
data/hr_holidays_attendance_data.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="holiday_status_extra_hours" model="hr.leave.type">
|
||||
<field name="name">Extra Hours</field>
|
||||
<field name="request_unit">hour</field>
|
||||
<field name="requires_allocation">no</field>
|
||||
<field name="leave_validation_type">manager</field>
|
||||
<field name="overtime_deductible" eval="True"/>
|
||||
<field name="active" eval="False"/>
|
||||
<field name="company_id" eval="False"/>
|
||||
<field name="icon_id" ref="hr_holidays.icon_9"/>
|
||||
<field name="sequence">5</field>
|
||||
</record>
|
||||
|
||||
<!-- The record above should be archived if no company has overtime counting enabled, otherwise enabled -->
|
||||
<function model="res.company" name="_check_extra_hours_time_off"/>
|
||||
</data>
|
||||
</odoo>
|
9
data/hr_holidays_attendance_demo.xml
Normal file
9
data/hr_holidays_attendance_demo.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="base.main_company" model="res.company">
|
||||
<field name="hr_attendance_overtime" eval="True" />
|
||||
<field name="overtime_start_date" eval="(DateTime.today() + relativedelta(months=-1)).date()" />
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
226
i18n/ar.po
Normal file
226
i18n/ar.po
Normal file
@ -0,0 +1,226 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Malaz Abuidris <msea@odoo.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: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s ساعات متاحة "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "مستوى خطة الاستحقاق "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "الحاضرين "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "الحضور"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "متاح"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "التقويم"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "الشركات"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "حساب الساعات الإضافية "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "الأيام"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "خصم الساعات الإضافية "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "إهمال "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "الساعات الإضافية "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "الساعات الإضافية المتاحة "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "التردد كل ساعة المصدر "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "ساعات "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "وقت الحضور الإضافي للموارد البشرية "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"إذا تم تعيين المصدر على التقويم، فسيتم حساب مقدار ساعات العمل من تقويم "
|
||||
"الموظف ووقت الإجازة (إذا كانت الخطة تعتمد على وقت العمل). بخلاف ذلك، سيتم "
|
||||
"تحديد مقدار ساعات العمل بناءً على سجلات الحضور. "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "طلب مخصصات جديد "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr "بمجرد الموافقة على إجازة، سوف يتم خصم الساعات الإضافية من الحضور. "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "الوقت الإضافي القابل للخصم "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "طلب ساعات عمل إضافية "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "حفظ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "المصدر"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "لا يملك الموظف ساعات إضافية كافية لتمديد تخصيصه. "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "لا يملك الموظف ساعات إضافية كافية لتمديد إجازته. "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "لا يملك الموظف ساعات إضافية كافية لطلب هذه الإجازة. "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "لا يملك الموظف ساعات عمل إضافية كافية لطلب هذه الإجازة. "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "الإجازات "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "مخصص الإجازات "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "نوع الإجازة "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "إجمالي ساعات العمل الإضافية "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "لا تملك ساعات إضافية كافية لطلب هذه الإجازة "
|
227
i18n/bg.po
Normal file
227
i18n/bg.po
Normal file
@ -0,0 +1,227 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Георги Пехливанов <sonaris@gmail.com>, 2023
|
||||
# kalatchev, 2023
|
||||
# KeyVillage, 2023
|
||||
# aleksandar ivanov, 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: aleksandar ivanov, 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Присъствие"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Посещения"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "На разположение"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Календар"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Фирми"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Дни"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Отхвърлете"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Часове"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Запазете"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Източник"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Почивка"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Потребител"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
231
i18n/ca.po
Normal file
231
i18n/ca.po
Normal file
@ -0,0 +1,231 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# eriiikgt, 2023
|
||||
# jabiri7, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Harcogourmet, 2023
|
||||
# marcescu, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# Josep Anton Belchi, 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: Josep Anton Belchi, 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s hores disponibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Nivell del pla de l'arxiu"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Assistència"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Assistències"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Disponible"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Calendari"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empreses"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Comptar les hores extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dies"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Dedueix hores extres"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Hores extres"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Hores extra disponibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Hores"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Hores extres d'assistència"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nova sol·licitud d'assignació"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Una vegada que s'aprovi un temps lliure d'aquest tipus, es descomptaran les "
|
||||
"hores extra d'assistència."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Deducció d'hores extres"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Sol·licitar hores extres"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Desar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Font"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "L'empleat no té prou hores extra per ampliar aquesta assignació."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "L'empleat no té prou hores extres per ampliar aquest permís."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "L'empleat no té prou hores extres per sol·licitar aquest permís."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"L'empleat no té prou hores extraordinàries per sol·licitar aquest permís."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Absències"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Assignació d'absències"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tipus d'absència"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Hores addicionals totals"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "No teniu prou hores extres per sol·licitar aquest permís"
|
225
i18n/cs.po
Normal file
225
i18n/cs.po
Normal file
@ -0,0 +1,225 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2023
|
||||
# Marek Reichstädter, 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: Marek Reichstädter, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Úroveň akruálního plánu"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Docházka"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Docházka"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Dostupný"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendář"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Společnosti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Počítat přesčasy"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Odčítat přesčasy"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Přesčasy"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Dostupné přesčasy"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Hodiny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nová žádost o přidělení"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr "Jakmile bude tento typ volna schválen, budou odečteny hodiny navíc."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Odčitatelné přesčasy"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Zažádat o přesčas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Uložit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Zdroj"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "Zaměstnanec nemá dostatek hodin navíc pro prodloužení tohoto přídělu."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "Zaměstnanec nemá dostatek hodin navíc pro prodloužení tohoto volna."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "Zaměstnanec nemá dostatek hodin navíc pro tuto žádost o volno."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "Zaměstnanec nemá dostatek přesčasových hodin pro tuto žádost o volno."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Volno"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Alokace volných dnů"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Typ volna"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Přesčasy celkem"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
226
i18n/da.po
Normal file
226
i18n/da.po
Normal file
@ -0,0 +1,226 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2024
|
||||
#
|
||||
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: lhmflexerp <lhm@flexerp.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Optjeningsplan niveau"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Tilstedeværelse"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Fremmødte"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Til rådighed"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Virksomheder"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dage"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Fratræk ekstra timer"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Kassér"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Extra timer"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Ekstra timer tilgængelige"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Timer"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Ny tildelingsanmodning"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Anmod om overtid"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Gem"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"Medarbejderen har ikke nok ekstratimer til at forlænge denne tildeling."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "Medarbejderen har ikke nok ekstratimer til at forlænge denne ferie."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "Medarbejderen har ikke nok ekstratimer til at anmode on denne ferie."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"Medarbejderen har ikke nok overtidstimer til at anmode om denne fridag."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Fri"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Fri tids tildeling"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Fri type"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Total overtid"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Du har ikke nok ekstratimer til at anmode om denne ferie."
|
239
i18n/de.po
Normal file
239
i18n/de.po
Normal file
@ -0,0 +1,239 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 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: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s Stunden verfügbar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Ebene des Rückstellungsplans"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Anwesenheit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Anwesenheiten"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Verfügbar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Anzahl Überstunden"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Tage"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Zusätzliche Stunden abziehen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Überstunden"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Zusätzliche Stunden verfügbar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Quelle der stündlichen Häufigkeit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Stunden"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "HR Anwesenheit Überstunden"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Wenn die Quelle auf Kalender eingestellt ist, wird die Anzahl der "
|
||||
"geleisteten Arbeitsstunden aus dem Kalender des Mitarbeiters und der "
|
||||
"Abwesenheit berechnet (wenn der Plan auf der gearbeiteten Zeit basiert). "
|
||||
"Andernfalls basiert die Anzahl der geleisteten Arbeitsstunden auf den "
|
||||
"Anwesenheitseinträgen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Neuer Antrag auf Urlaubsanspruch"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Sobald eine solche Abwesenheit genehmigt ist, werden die zusätzlichen "
|
||||
"Stunden abgezogen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Selbstbehalt bei Überstunden"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Überstunden beantragen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Herkunft"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"Der Mitarbeiter verfügt nicht über genügend zusätzliche Stunden, um diesen "
|
||||
"Anspruch zu erweitern."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"Der Mitarbeiter verfügt nicht über genügend zusätzliche Stunden, um diesen "
|
||||
"Urlaub zu verlängern."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"Der Mitarbeiter verfügt nicht über genügend zusätzliche Stunden, um diesen "
|
||||
"Urlaub zu beantragen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"Dieser Mitarbeiter hat nicht genügend Überstunden, um diese Abwesenheitsart "
|
||||
"zu beantragen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Abwesenheit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Urlaubsansprüche"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Abwesenheitsart"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Überstunden gesamt"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
||||
"Sie haben nicht genügend zusätzliche Stunden, um diesen Urlaub zu beantragen"
|
233
i18n/es.po
Normal file
233
i18n/es.po
Normal file
@ -0,0 +1,233 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 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: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s horas disponibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Nivel de plan de acumulación"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Asistencia"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Asistencias"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Disponible"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Calendario"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Compañías"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Contar horas extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Días"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Descontar horas extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Horas extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Horas extra disponible"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Fuente horaria de la frecuencia"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Horas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "RR. HH. Asistencia de tiempo extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Si la fuente proviene de Calendario, la cantidad de horas trabajadas se "
|
||||
"calculará a partir del calendario y el tiempo personal de empleados (si el "
|
||||
"plan se basa en el tiempo trabajado). De lo contrario, la cantidad de horas "
|
||||
"trabajadas se basará en los registros de asistencia."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nueva Solicitud de asignación"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Una ves que el tiempo personal de este tipo se apruebe, se descontarán las "
|
||||
"horas extras en asistencias."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Tiempo extra descontable"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Pedir tiempo extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Origen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"El empleado no tiene horas extras suficientes para extender esta asignación."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"El empleado no tiene horas extras suficientes para extender este permiso."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"El empleado no tiene horas extras suficientes para pedir este permiso."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"El empleado no tiene horas extras suficientes para pedir este permiso."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Ausencias"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Asignación de ausencias"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tipo de ausencia"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Total de tiempo excedido"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "No tiene horas extra suficientes para pedir este permiso"
|
237
i18n/es_419.po
Normal file
237
i18n/es_419.po
Normal file
@ -0,0 +1,237 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 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: Fernanda Alvarez, 2023\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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s horas disponibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Nivel de plan de acumulación"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Asistencia"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Asistencias"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Disponible"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Calendario"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Número de horas adicionales"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Días"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Descontar horas adicionales"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Horas adicionales"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Horas adicionales disponibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Fuente horaria de la frecuencia"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Horas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Asistencia de tiempo adicional de RR. HH."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Si la fuente proviene de Calendario, la cantidad de horas trabajadas se "
|
||||
"calculará a partir del calendario de empleados y los permisos (si el plan se"
|
||||
" basa en el tiempo trabajado). De lo contrario, la cantidad de horas "
|
||||
"trabajadas se basará en los registros de asistencia."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nueva solicitud de asignación"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Una vez que este tipo de tiempo personal se apruebe, se descontarán las "
|
||||
"horas adicionales en asistencias."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Tiempo adicional descontable"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Solicitar tiempo adicional"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Origen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"El empleado no tiene suficientes horas adicionales para extender esta "
|
||||
"asignación."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"El empleado no tiene suficientes horas adicionales para extender este "
|
||||
"permiso."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"El empleado no tiene suficientes horas adicionales para solicitar este "
|
||||
"permiso."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"El empleado no tiene suficientes horas adicionales para solicitar este "
|
||||
"permiso."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Tiempo personal"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Asignación de tiempo personal"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tipo de tiempo personal"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Total de horas adicionales"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "No tiene suficientes horas adicionales para solicitar este permiso"
|
235
i18n/et.po
Normal file
235
i18n/et.po
Normal file
@ -0,0 +1,235 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Leaanika Randmets, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Birgit Vijar, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Piia Paurson <piia@avalah.ee>, 2023
|
||||
# Algo Kärp <algokarp@gmail.com>, 2023
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2023
|
||||
# JanaAvalah, 2023
|
||||
# Anna, 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: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s tunde saadaval"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Tekkepõhine plaani tase"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Kohalviibimine"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Kohalolekud"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Saadaval"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Ettevõtted"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Ületunnid kokku"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "päevad"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Arvesta lisaaeg maha"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Loobu"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Lisaaeg"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Lisaaeg saadaval"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Sagedus tunnid"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Tund(i)"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "HR kohaloleku ületunnid"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Kui allikaks on määratud kalender, siis arvutatakse töötatud tundide arv "
|
||||
"töötaja kalendri ja puhkuse alusel (kui plaan põhineb töötatud aja alusel). "
|
||||
"Vastasel juhul põhineb töötatud tundide arv kohaloleku kirjetel."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Uus puhkepäevade jaotamise taotlus"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Kui seda tüüpi vaba aeg on heaks kiidetud, arvestatakse kohalolek maha."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Ületunnitöö omavastutus"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Taotle ületunde"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Salvesta"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Kandideerimise allikad"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "Töötajal ei ole selle puhkuse pikendamiseks piisavalt lisatunde."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "Töötajal ei ole selle puhkuse pikendamiseks piisavalt lisatunde."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "Töötajal ei ole selle puhkuse taotlemiseks piisavalt lisatunde."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "Töötajal ei ole selle puhkuse taotlemiseks piisavalt ületunde."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Puudumised"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Puudumiste jaotamine"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Puudumise tüüp"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Ületunnid kokku"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Teil ei ole selle puhkuse taotlemiseks piisavalt lisatunde"
|
226
i18n/fa.po
Normal file
226
i18n/fa.po
Normal file
@ -0,0 +1,226 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# odooers ir, 2023
|
||||
# Ali Reza Feizi Derakhshi, 2023
|
||||
# F Hariri <fhari1234@gmail.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Martin Trigaux, 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: Martin Trigaux, 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "حضور و غیاب"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "حضور و غیاب"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "در دسترس"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "گاهشمار"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "شرکتها"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "شمارش ساعت های اضافه"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "روز"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "رها کردن"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "ساعات اضافه"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "ساعات اضافی موجود است"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "ساعت"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "کسر اضافه کاری"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "ذخیره"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "مبدا"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "مرخصی"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "تخصیص مرخصی"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "نوع مرخصی"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "کل اضافه کاری"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "کاربر"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
235
i18n/fi.po
Normal file
235
i18n/fi.po
Normal file
@ -0,0 +1,235 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 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: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s tuntia käytettävissä"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Karttumajärjestelmän taso"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Läsnäolo"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Läsnäolot"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Saatavilla"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalenteri"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Yritykset"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Laske lisätunnit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Päivää"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Lisätuntien vähentäminen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Hylkää"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Lisätunnit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Lisäaikoja saatavilla"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Kunka usein Tunnit Lähde"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Tunnit"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "HR läsnäolo ylityö"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Jos lähteenä on Kalenteri, työtuntien määrä lasketaan työntekijän "
|
||||
"kalenterista ja vapaa-ajasta (jos järjestelmä perustuu työaikaan). Muussa "
|
||||
"tapauksessa työtuntien määrä perustuu läsnäolotietoihin."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Uusi kohdentamispyyntö"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr "Kun vapaa on hyväksytty, ylimääräiset läsnäolotunnit vähennetään."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Ylityön omavastuuosuus"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Ylityön pyytäminen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Tallenna"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Lähde"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"Työntekijällä ei ole riittävästi lisätunteja tämän kohdentamisen "
|
||||
"pidentämiseksi."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"Työntekijällä ei ole riittävästi lisätunteja tämän loman pidentämiseksi."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"Työntekijällä ei ole riittävästi ylimääräisiä tunteja, jotta hän voisi "
|
||||
"pyytää tätä lomaa."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"Työntekijällä ei ole riittävästi ylityötunteja tämän loman pyytämiseen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Vapaa"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Vapaa-ajan kohdentaminen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Vapaa-aikatyyppi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Ylityöt yhteensä"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Sinulla ei ole riittävästi lisätunteja tämän loman hakemiseen"
|
234
i18n/fr.po
Normal file
234
i18n/fr.po
Normal file
@ -0,0 +1,234 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 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: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s heures disponibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Niveau du plan de cumul de congés"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Présence"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Présences"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Disponible"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Sociétés"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Nombre d'heures supplémentaires"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Jours"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Déduire des heures supplémentaires"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Ignorer"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Heures supplémentaires "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Heures supplémentaires disponibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Fréquence horaire"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Heures"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Hr Heures Supplémentaires de Présence"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Si la source est définie sur Calendrier, le nombre d'heures travaillées sera"
|
||||
" calculé à partir du calendrier de l'employé et de ses congés (si le plan "
|
||||
"est basé sur les heures travaillées). Dans le cas contraire, le nombre "
|
||||
"d'heures travaillées sera basé sur les enregistrements de présence."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nouvelle demande d'allocation"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Une fois qu'un congé de ce type est approuvé, des heures supplémentaires de "
|
||||
"présence seront déduites."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Heures supplémentaires déductibles"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Demande d'utilisation des heures supplémentaires"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Enregistrer"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"L'employé ne dispose pas de suffisamment d'heures supplémentaires pour "
|
||||
"prolonger cette allocation."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"L'employé n'a pas assez d'heures supplémentaires pour prolonger ce congé."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"L'employé n'a pas assez d'heures supplémentaires pour demander ce congé."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"L'employé n'a pas assez d'heures supplémentaires pour demander ce congé."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Congés"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Allocation de congés"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Type de congés"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Heures supplémentaires totales"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Vous n'avez pas assez d'heures supplémentaires pour demander ce congé"
|
228
i18n/he.po
Normal file
228
i18n/he.po
Normal file
@ -0,0 +1,228 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2023
|
||||
# david danilov, 2023
|
||||
# ilan kl <ilan@qaroads.co.il>, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# NoaFarkash, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# Martin Trigaux, 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: Martin Trigaux, 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "נוכחות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "נוכחות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "זמין"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "יומן"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "חברות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "סופר שעות נוספות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "ימים"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "בטל"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "שעות נוספות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "שעות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "שמור"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "מקור"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "מאשר חופשות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "הקצאת יום חופש"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "סוג חופשה"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "סה\"כ שעות נוספות"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
218
i18n/hr_holidays_attendance.pot
Normal file
218
i18n/hr_holidays_attendance.pot
Normal file
@ -0,0 +1,218 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
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 21:55+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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
226
i18n/hu.po
Normal file
226
i18n/hu.po
Normal file
@ -0,0 +1,226 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Dombos, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# krnkris, 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: 2023-10-26 21:55+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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Jelenlét"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Jelenlétek"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Elérhető"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Naptár"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Vállalatok"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "nap"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Elvetés"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "óra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Új kiosztás kérelem"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Mentés"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Forrás"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Szabadság"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Szabadság kiosztás"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Szabadság típus"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Összes túlóra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
234
i18n/id.po
Normal file
234
i18n/id.po
Normal file
@ -0,0 +1,234 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Abe Manyo, 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: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s jam tersedia"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Tingkat Rencana Akrual"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Absensi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Absensi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Tersedia"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Hitung Jam Tambahan"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Hari"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Kurangi Jam Tambahan"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Buang"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Jam Tambaha"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Jam Tambahan Tersisa"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Frequency Hourly Source"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Jam"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Absensi Lembur HR"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Bila sumber ditetapkan ke Kalender, jumlah total jam kerja akan dihitung "
|
||||
"dari kalender dan cuti karyawan (bila rencana didasarkan pada total jam "
|
||||
"kerja). Jika tidak, jumlah total jam kerja akan didasarkan pada catatan "
|
||||
"Absensi."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Permintaan Alokasi Baru"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Setelah cuti untuk tipe ini disetujui, jam tambahan di absensi akan "
|
||||
"dikurangi."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Overtime Deductible"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Permintaan Lembur"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Simpan"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Sumber"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"Karyawan tidak memiliki jam tambahan yang mencukupi untuk memperpanjang "
|
||||
"alokasi ini."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"Karyawan ini tidak memiliki jam tambahan untuk memperpanjang cuti ini."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "Karyawan tidak memiliki jam tambahan untuk meminta cuti ini."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"Karyawan tidak memiliki jam lembur yang mencukupi untuk meminta cuti ini."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Cuti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Alokasi Cuti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tipe Cuti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Jam Lembur Total"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
||||
"Anda tidak memiliki jam tambahan yang mencukupi untuk meminta cuti ini"
|
235
i18n/it.po
Normal file
235
i18n/it.po
Normal file
@ -0,0 +1,235 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Marianna Ciofani, 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: Marianna Ciofani, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s ore disponibili"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Livello del piano di maturazione"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Presenza"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Presenze"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Disponibile"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Calendario"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Aziende"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Conteggio ore extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Giorno/i"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Dedurre le ore extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Abbandona"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Ore extra"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Ore extra disponibili"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Origine frequenza oraria"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Ora/e"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "HR Ore di presenza straordinarie"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Se l'origine è impostata sul Calendario, il numero di ore di lavoro verrà "
|
||||
"calcolato dal calendario del dipendente e dalle ferie (se il piano si basa "
|
||||
"sulle ore di lavoro). Altrimenti, l'importo di ore di lavoro si baserà sui "
|
||||
"resoconti presenza."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nuova richiesta di assegnazione"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Una volta approvato un congedo di questo tipo, le ore extra di presenza "
|
||||
"saranno detratte."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Franchigia per gli straordinari"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Richiesta di lavoro straordinario"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Salva"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Sorgente"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"Il dipendente non ha abbastanza ore extra per prolungare questa "
|
||||
"assegnazione."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"Il dipendente non ha abbastanza ore extra per prolungare questo congedo."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"Il dipendente non ha abbastanza ore extra per richiedere questo congedo."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"Il dipendente non ha abbastanza ore di straordinario per richiedere questo "
|
||||
"congedo."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Ferie"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Assegnazione ferie"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tipologia ferie"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Lavoro straordinario totale"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Non hai abbastanza ore extra per richiedere questo congedo"
|
224
i18n/ja.po
Normal file
224
i18n/ja.po
Normal file
@ -0,0 +1,224 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Junko Augias, 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: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s時間利用可能 "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "休暇累積プランレベル"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "勤怠"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "勤怠"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "処理可能"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "カレンダー"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "会社"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "時間外労働のカウント"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "日"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "時間外労働の控除"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "破棄"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "時間外労働"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "時間外労働時間利用可能"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "頻度 毎時ソース"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "時間"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "HR勤怠残業"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"ソースがカレンダーに設定されている場合、勤務時間数は、従業員のカレンダと休暇(計画が労働時間に基づいている場合)から計算されます。そうでない場合、勤務時間数は勤怠記録に基づきます。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "休暇割当リクエスト"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr "このタイプの休暇が承認されると、勤務時間の超過が差し引かれます。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "残業控除"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "残業申請"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "情報源"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "この割当を申請するには、従業員の時間外労働時間が不足しています。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "この休暇を延長するには、従業員の時間外労働時間が不足しています。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "この休暇を申請するには、従業員の時間外労働時間が不足しています。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "この休暇を申請するには、従業員の時間外労働時間が不足しています。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "休暇"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "休暇の割り当て"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "休暇タイプ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "合計残業時間"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ユーザ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "この休暇を申請するには、時間外労働時間が不足しています。"
|
225
i18n/ko.po
Normal file
225
i18n/ko.po
Normal file
@ -0,0 +1,225 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Daye Jeong, 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: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s 시간 사용 가능"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "발생 계획 수준"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "출근"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "근태 관리"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "사용 가능"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "캘린더"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "회사"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "추가 근무 시간 계산"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "일"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "추가 시간 공제"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "취소"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "추가 시간"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "추가 시간 이용 가능"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "시간별 소스 빈도"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "시간"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "시간외 근무 시간"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"소스가 캘린더로 설정된 경우, 근무 시간은 직원 캘린더 및 휴가(근무 시간을 기준으로 하는 플랜인 경우)에서 계산됩니다. 그렇지 않으면 "
|
||||
"근무 시간은 출석 기록을 기준으로 계산됩니다."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "새 할당 요청"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr "해당 유형의 휴가가 승인되면 추가 근무 시간에서 차감됩니다."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "초과 근무 공제"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "초과 근무 요청"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "저장"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "원본"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "직원이 수당을 연장할 수 있는 충분한 추가 시간을 채우지 않았습니다."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "직원이 휴가를 연장할 수 있는 충분한 추가 시간을 채우지 않았습니다."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "직원이 휴가를 요청할 수 있는 충분한 추가 시간을 채우지 않았습니다."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "직원이 휴가를 요청할 수 있는 충분한 초과 근무 시간을 채우지 못했습니다."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "휴가"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "휴가 할당"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "휴가 유형"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "총 초과 근무"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "휴가를 요청할 수 있는 충분한 추가 시간을 채우지 않았습니다."
|
226
i18n/lt.po
Normal file
226
i18n/lt.po
Normal file
@ -0,0 +1,226 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2023
|
||||
# Donatas <donatasvaliulis16@gmail.com>, 2023
|
||||
# Monika Raciunaite <monika.raciunaite@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: Monika Raciunaite <monika.raciunaite@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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Lankomumas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Lankomumas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Pasiekiamas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendorius"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Įmonės"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dienos"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Atmesti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Valandos"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Išsaugoti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Šaltinis"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Neatvykimai"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Neatvykimo rūšis"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
225
i18n/lv.po
Normal file
225
i18n/lv.po
Normal file
@ -0,0 +1,225 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Uzkrāšanas plāna līmenis"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Apmeklējums"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Apmeklējumi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Pieejams"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendārs"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Uzņēmumi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Skaitīt papildus stundas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dienas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Atmest"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Stundas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Saglabāt"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Avots"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Atvaļinājumi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Lietotājs"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
233
i18n/nl.po
Normal file
233
i18n/nl.po
Normal file
@ -0,0 +1,233 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 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: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s uren beschikbaar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Opbouwplan-niveau"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Aanwezigheid"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Aanwezigheid"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Beschikbaar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Agenda"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Bedrijven"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Aantal extra uren"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dagen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Extra uren aftrekken"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Negeren"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Extra uren"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Extra uren beschikbaar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Frequentie per uur"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Uren"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "HR Aanwezigheid Overwerk"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Als de bron is ingesteld op Kalender, wordt het aantal gewerkte uren "
|
||||
"berekend op basis van de kalender en het verlof van de werknemer (als het "
|
||||
"plan is gebaseerd op gewerkte tijd). Anders wordt het aantal gewerkte uren "
|
||||
"gebaseerd op de Aanwezigheidsrecords."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nieuwe verloftoewijzing"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Zodra een verlof van dit type is goedgekeurd, worden extra aanwezigheidsuren"
|
||||
" afgetrokken."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Overwerk aftrekbaar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Overwerk aanvragen"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Opslaan"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"De werknemer heeft niet voldoende extra uren om deze toewijzing te "
|
||||
"verlengen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"De werknemer heeft niet voldoende extra uren om dit verlof te verlengen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"De werknemer heeft niet genoeg extra uren om dit verlof aan te vragen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "De werknemer heeft niet genoeg overuren om dit verlof aan te vragen."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Verlof"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Verloftoewijzing"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Soort verlof"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Totaal overwerk"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Je hebt niet genoeg extra uren om dit verlof aan te vragen"
|
234
i18n/pl.po
Normal file
234
i18n/pl.po
Normal file
@ -0,0 +1,234 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 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: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s dostępnych godzin"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Poziom planu naliczania"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Obecność"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Obecności"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Dostępny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendarz"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Firmy"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Liczenie dodatkowych godzin"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dni"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Odliczenie dodatkowych godzin"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Odrzuć"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Dodatkowe godziny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Dostępne dodatkowe godziny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Godziny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Godziny obecności w godzinach nadliczbowych"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nowy wniosek o alokację"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Po akceptacji tego typu dni wolnych, dodatkowe godziny obecności zostaną "
|
||||
"odliczone."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Odliczenie za nadgodziny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Wniosek o nadgodziny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Zapisz"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Źródło"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"Pracownik nie ma wystarczającej liczby dodatkowych godzin, aby przedłużyć tę"
|
||||
" alokację."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"Pracownik nie ma wystarczającej liczby dodatkowych godzin, aby przedłużyć "
|
||||
"ten urlop."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"Pracownik nie ma wystarczającej liczby dodatkowych godzin, aby złożyć "
|
||||
"wniosek o ten urlop."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"Pracownik nie ma wystarczającej liczby godzin nadliczbowych, aby złożyć "
|
||||
"wniosek o ten urlop."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Dni wolne"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Przydział czasu wolnego"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Typ dni wolnych"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Łącznie nadgodziny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
||||
"Nie masz wystarczającej liczby dodatkowych godzin, aby wnioskować o ten "
|
||||
"urlop"
|
222
i18n/pt.po
Normal file
222
i18n/pt.po
Normal file
@ -0,0 +1,222 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 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: 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Assiduidade"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Assiduidades"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Disponível"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Calendário"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dias"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Horas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Origem"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Ausência"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Alocação de Ausência"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
233
i18n/pt_BR.po
Normal file
233
i18n/pt_BR.po
Normal file
@ -0,0 +1,233 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Layna Nascimento, 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: Layna Nascimento, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s horas disponíveis"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Nível de plano de acumulação"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Controle de presença"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Presenças"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Disponível"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Calendário"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Total de horas extras"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dias"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Deduzir horas extras"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Horas extras"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Horas extras disponíveis"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Origem – Frequência por hora"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Horas"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "HR – Controle de Presença – Horas extras"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Se a origem for definida como Calendário, a quantidade de horas trabalhadas "
|
||||
"será calculada a partir do calendário e das folgas do funcionário (se o "
|
||||
"plano for baseado no tempo trabalhado). Caso contrário, a quantidade de "
|
||||
"horas trabalhadas será baseada nos registros de presença."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nova solicitação de alocação"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Quando uma folga deste tipo for aprovada, as horas extras no controle de "
|
||||
"presenças serão deduzidas."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Horas extras dedutíveis"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Solicitação de horas extras"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Salvar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Origem"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"O funcionário não tem horas extras suficientes para estender esta alocação."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "O funcionário não tem horas extras para estender esta licença."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"O funcionário não tem horas extras suficientes paraa solicitar esta licença."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"O funcionário não tem horas de trabalho extras suficientes para solicitar "
|
||||
"esta licença."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Folga"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Alocação de folga"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tipo de folga"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Total de horas extras"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Você não tem horas extras suficientes para solicitar esta licença."
|
239
i18n/ru.po
Normal file
239
i18n/ru.po
Normal file
@ -0,0 +1,239 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Alena Vlasova, 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: 2023-10-26 21:55+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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s часов в наличии"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Уровень плана начислений"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Посещаемость"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Посещаемость"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Доступно"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Календарь"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Компании"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Учет дополнительных часов"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Дней"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Вычесть дополнительные часы"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Отменить"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Дополнительные часы"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Доступны дополнительные часы"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Частота Час Источник"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Часов"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Час Посещаемость Сверхурочные"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Если в качестве источника выбран Календарь, количество отработанных часов "
|
||||
"будет вычислено на основе календаря сотрудника и отгулов (если план основан "
|
||||
"на отработанном времени). В противном случае количество отработанных часов "
|
||||
"будет основано на данных учета посещаемости."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Новое распределение"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"После одобрения такого отгула дополнительные часы будут вычтены из "
|
||||
"посещаемости."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Вычет за сверхурочную работу"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Запрос на сверхурочную работу"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Сохранить"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Источник"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"У сотрудника нет достаточного количества дополнительных часов, чтобы "
|
||||
"продлить это распределение."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"У сотрудника нет достаточного количества дополнительных часов, чтобы "
|
||||
"продлить этот отпуск."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"У сотрудника нет достаточного количества дополнительных часов, чтобы "
|
||||
"запросить этот отпуск."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"У сотрудника недостаточно сверхурочных часов, чтобы запросить этот отпуск."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Отпуск"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Распределение отпусков"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Тип отсутсвия"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Итого сверхурочные"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Пользователь"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
||||
"У вас нет достаточного количества дополнительных часов, чтобы попросить этот"
|
||||
" отпуск"
|
222
i18n/sk.po
Normal file
222
i18n/sk.po
Normal file
@ -0,0 +1,222 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 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: 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Dochádzka"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Dochádzky"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Dostupné"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendár"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Spoločnosti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dni"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Hodiny"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Nová žiadosť o alokáciu"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Uložiť"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Zdroj"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Voľné dni"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Alokácia voľných dní"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Typ voľných dní"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
226
i18n/sl.po
Normal file
226
i18n/sl.po
Normal file
@ -0,0 +1,226 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Boris Kodelja <boris@hbs.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jasmina Macur <jasmina@hbs.si>, 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: Jasmina Macur <jasmina@hbs.si>, 2023\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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Prisotnost"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Prisotnosti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Razpoložljivo"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Koledar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Podjetja"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dni"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Opusti"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Ure"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Zahtevek za novo dodelitev"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Shrani"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Vir"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Odsotnost"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tip dopusta"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
231
i18n/sr.po
Normal file
231
i18n/sr.po
Normal file
@ -0,0 +1,231 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# Nemanja Skadric, 2024
|
||||
#
|
||||
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: Nemanja Skadric, 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s slobodnih sati"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Nivo obračunskog plana"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Prisustvo"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Prisustva"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Dostupno"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Preduzeća"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Računajte dodatne sate"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dani"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Odbijte dodatne sate"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Poništi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Dodatni sati"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Dodatni slobodni sati"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Frekvencija Po satu Izvor"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Sati"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Č Prisustvo Prekovremeno"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Ako je izvor podešen na Kalendar, količina odrađenih sati će se računati iz"
|
||||
" kalendara zaposlenih i slobodnog vremena (ako je plan zasnovan na odrađenom"
|
||||
" vremenu). U suprotnom, količina odrađenih sati će se zasnivati na "
|
||||
"evidenciji prisustva"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Novi zahtev za dodelu"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Kada se odobri slobodno vreme ove vrste, dodatni sati posećenosti će biti "
|
||||
"oduzeti."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Odbitak za prekovremeni rad"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Zahtevajte prekovremeni rad"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Sačuvaj"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Izvor"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "Zaposleni nema dovoljno dodatnih sati da produži ovu raspodelu."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "Zaposleni nema dovoljno dodatnih sati da produži ovaj odmor."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "Zaposleni nema dovoljno dodatnih sati da zatraži ovo odsustvo."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "Zaposleni nema dovoljno prekovremenih sati da zatraži ovo odsustvo."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Odsustvo"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Dodela slobodnog vremena"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Tip Pauze"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Ukupno prekovremeni rad"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Nemate dovoljno dodatnih sati da zatražite ovo odsustvo"
|
226
i18n/sv.po
Normal file
226
i18n/sv.po
Normal file
@ -0,0 +1,226 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Lasse L, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Simon S, 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: 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Närvaro"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Närvarande"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Tillgänglig"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Bolag"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Dagar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Förkasta"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Timmar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Spara"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Källa"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Ledighet"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Frånvarotilldelning"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Frånvarotyp"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr ""
|
228
i18n/th.po
Normal file
228
i18n/th.po
Normal file
@ -0,0 +1,228 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 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: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "มีอยู่ %s ชั่วโมง"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "ระดับแผนการสะสม"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "การเข้าร่วม"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "การลงเวลางาน"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "พร้อม"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "ปฏิทิน"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "บริษัท"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "จำนวนชั่วโมงพิเศษ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "วัน"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "หักชั่วโมงพิเศษ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "ละทิ้ง"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "ชั่วโมงพิเศษ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "ชั่วโมงพิเศษที่พร้อม"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "แหล่งที่มาความถี่รายชั่วโมง"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "ชั่วโมง"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "การลงเวลางานล่วงเวลา Hr"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"ถ้าแหล่งที่มาถูกตั้งค่าเป็นปฏิทิน "
|
||||
"จำนวนชั่วโมงทำงานจะถูกคำนวณจากปฏิทินของพนักงานและวันลา "
|
||||
"(ถ้าแผนขึ้นอยู่กับเวลาทำงาน) ไม่เช่นนั้น "
|
||||
"จำนวนชั่วโมงทำงานจะขึ้นอยู่กับบันทึกการเข้างาน"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "ร้องขอการจัดสรรใหม่"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"เมื่อได้รับการอนุมัติการลาประเภทนี้แล้ว จะหักชั่วโมงพิเศษในการลงเวลางาน"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "หักค่าล่วงเวลา"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "คำร้องขอล่วงเวลา"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "บันทึก"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "แหล่งที่มา"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "พนักงานไม่มีชั่วโมงพิเศษเพียงพอที่จะขยายเวลาการจัดสรรนี้"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "พนักงานไม่มีชั่วโมงพิเศษเพียงพอที่จะขยายเวลาการลานี้"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "พนักงานไม่มีชั่วโมงพิเศษเพียงพอที่จะขอลานี้"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "พนักงานไม่มีชั่วโมงทำงานล่วงเวลาเพียงพอที่จะขอลาได้"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "การลา"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "การจัดสรรการลา"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "ประเภทการลา"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "การล่วงเวลาทั้งหมด"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "ผู้ใช้"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "คุณไม่มีชั่วโมงพิเศษเพียงพอที่จะขอลานี้"
|
227
i18n/tr.po
Normal file
227
i18n/tr.po
Normal file
@ -0,0 +1,227 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Ediz Duman <neps1192@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: Ediz Duman <neps1192@gmail.com>, 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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s saat kullanılabilir"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Tahakkuk Planı Seviyesi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Katılım"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Katılımcılar"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Uygun"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Takvim"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Şirketler"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Fazla Mesaileri Say"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Gün"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Fazla Mesaileri Düş"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Vazgeç"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Fazla Mesailer"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Fazla Mesailer Mevcuttur"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Saat"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Fazla Mesai Katılıımı"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Yeni Tahsis İsteği"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Bu tür bir izin onaylandıktan sonra, katılımlarda ekstra saatler "
|
||||
"düşülecektir."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Düşülebilen Fazla Mesai"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Fazla Mesai Talebi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Kaydet"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Kaynak"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "Çalışanın bu tahsisatı uzatmak için yeterli fazla mesaisi yoktur."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "Çalışanın bu izni uzatmak için yeterli fazla mesaisi yoktur."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "Çalışanın bu izni talep etmek için yeterli fazla mesaisi yoktur."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "Çalışanın bu izni talep etmek için yeterli fazla mesai saati yoktur."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "İzin"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "İzin Tahsisi"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "İzin Türü"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Toplam Fazla Mesai"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Bu izni talep etmek için yeterli fazla mesainiz yok"
|
234
i18n/uk.po
Normal file
234
i18n/uk.po
Normal file
@ -0,0 +1,234 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# 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: 2023-10-26 21:55+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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s годин доступно"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Рівень плану нарахування"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Відвідування"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Відвідування"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "В наявності"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Календар"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Компанії"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Підрахунок додаткових годин"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Дні"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Відніміть додаткові години"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Відмінити"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Додаткові години"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Доступні додаткові години"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "Джерело погодинної частоти"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Години"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Понаднормове відвідування Hr"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
"Якщо в якості джерела встановлено Календар, кількість відпрацьованих годин "
|
||||
"буде обчислюватися з календаря працівника та відпустки (якщо план базується "
|
||||
"на відпрацьованому часі). В іншому випадку кількість відпрацьованих годин "
|
||||
"базуватиметься на обліку відвідуваності."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Новий запит на розподілення"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Щойно відпустку такого типу буде затверджено, додаткові години відвідування "
|
||||
"будуть вираховані."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Доплата за понаднормовий час"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Запит на понаднормовий час"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Зберегти"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Джерело"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr ""
|
||||
"У працівника не вистачає додаткових годин, щоб продовжити цей розподіл."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr ""
|
||||
"У працівника не вистачає додаткових годин для продовження цієї відпустки."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr ""
|
||||
"У працівника не вистачає додаткових годин, щоб попросити цю відпустку."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr ""
|
||||
"У працівника недостатньо понаднормових годин, щоб подати заяву на цю "
|
||||
"відпустку."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Відпустка"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Розподіл на відпустку"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Тип відпустки"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Увесь перепрацьований час"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "У вас недостатньо додаткових годин, щоб подати запит на цю відпустку"
|
225
i18n/vi.po
Normal file
225
i18n/vi.po
Normal file
@ -0,0 +1,225 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Thi Huong Nguyen, 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: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "Mức độ phương pháp tích lũy"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "Chuyên cần"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "Chấm công"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "Có hàng"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "Lịch"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Công ty"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "Đếm giờ làm thêm"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "Ngày"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "Trừ giờ làm thêm"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "Huỷ bỏ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "Giờ làm thêm"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "Có giờ làm thêm"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "Giờ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "Nhân sự có mặt quá giờ "
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "Yêu cầu phân bổ mới"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr ""
|
||||
"Khi nghỉ phép của loại này được duyệt, giờ làm thêm trong điểm danh sẽ được "
|
||||
"trừ đi."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "Tăng ca có thể trừ"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "Yêu cầu tăng ca"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "Lưu"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "Nguồn"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "Nhân viên không có đủ số giờ làm thêm để kéo dài phân bổ này."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "Nhân viên không có đủ số giờ làm thêm để kéo dài nghỉ phép này."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "Nhân viên không có đủ số giờ làm thêm để yêu cầu nghỉ phép này."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "Nhân viên không có đủ số giờ làm thêm để yêu cầu nghỉ phép này."
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "Nghỉ phép"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Phân bổ nghỉ phép"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "Loại Nghỉ phép"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "Tổng tăng ca"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "Bạn không có đủ số giờ làm thêm để yêu cầu nghỉ phép này"
|
223
i18n/zh_CN.po
Normal file
223
i18n/zh_CN.po
Normal file
@ -0,0 +1,223 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.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: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "可用的%s小时"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "应计计划等级"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "出勤"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "出勤"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "可用"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "日历"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "计算加班时间"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "天"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "扣除额外的小时数"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "丢弃"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "加班时间"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "可提供的额外时间"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "频率 每小时 来源"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "小时"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "加班时间"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr "如果来源设置为日历,则工作时数将根据员工日历和休息时间计算(如果计划基于工作时间)。否则,工时将根据考勤记录计算。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "新的分配请求"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr "一旦这种类型的休假被批准,将扣除额外的出勤时间。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "加班费免赔额"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "要求加班"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "来源"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "该员工没有足够的额外时间来延长这一分配。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "该员工没有足够的额外时间来延长这一假期。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "该员工没有足够的额外时间来申请这个假期。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "该员工没有足够的加班时间来申请这个假期。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "休假"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "休息分配"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "休假类型"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "加班费总额"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "您没有足够的额外时间来申请这个假期"
|
223
i18n/zh_TW.po
Normal file
223
i18n/zh_TW.po
Normal file
@ -0,0 +1,223 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_holidays_attendance
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 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: Tony Ng, 2023\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_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_type.py:0
|
||||
#, python-format
|
||||
msgid "%s hours available"
|
||||
msgstr "%s 小時可用"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_accrual_level
|
||||
msgid "Accrual Plan Level"
|
||||
msgstr "累計方案等級"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_attendance
|
||||
msgid "Attendance"
|
||||
msgstr "出勤"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__attendance
|
||||
msgid "Attendances"
|
||||
msgstr "考勤"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Available"
|
||||
msgstr "可用"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields.selection,name:hr_holidays_attendance.selection__hr_leave_accrual_level__frequency_hourly_source__calendar
|
||||
msgid "Calendar"
|
||||
msgstr "日曆"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__hr_attendance_overtime
|
||||
msgid "Count Extra Hours"
|
||||
msgstr "計算額外的時間"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Days"
|
||||
msgstr "天內"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_employee_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.res_users_view_form
|
||||
msgid "Deduct Extra Hours"
|
||||
msgstr "以加班時數抵用"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Discard"
|
||||
msgstr "捨棄"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_id
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_id
|
||||
msgid "Extra Hours"
|
||||
msgstr "加班時數"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_attendance_holidays_hr_leave_allocation_view_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_view_form_overtime
|
||||
msgid "Extra Hours Available"
|
||||
msgstr "可用加班時數"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid "Frequency Hourly Source"
|
||||
msgstr "頻率每小時來源"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-javascript
|
||||
#: code:addons/hr_holidays_attendance/static/src/xml/time_off_calendar.xml:0
|
||||
#, python-format
|
||||
msgid "Hours"
|
||||
msgstr "小時"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_type__hr_attendance_overtime
|
||||
msgid "Hr Attendance Overtime"
|
||||
msgstr "人事出勤加班換休"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_accrual_level__frequency_hourly_source
|
||||
msgid ""
|
||||
"If the source is set to Calendar, the amount of worked hours will be "
|
||||
"computed from employee calendar and time off (if the plan is based on worked"
|
||||
" time). Otherwise, the amount of worked hours will be based on Attendance "
|
||||
"records."
|
||||
msgstr "如果來源設置為日曆,則工作時數將根據員工日曆和休息時間計算(如果計劃基於工作時間)。否則,工時將根據考勤記錄計算。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_action
|
||||
#: model:ir.actions.act_window,name:hr_holidays_attendance.hr_leave_allocation_overtime_manager_action
|
||||
msgid "New Allocation Request"
|
||||
msgstr "新的分配請求"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,help:hr_holidays_attendance.field_hr_leave_type__overtime_deductible
|
||||
msgid ""
|
||||
"Once a time off of this type is approved, extra hours in attendances will be"
|
||||
" deducted."
|
||||
msgstr "此類休假一經批准,將扣除加班時數。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__overtime_deductible
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__overtime_deductible
|
||||
msgid "Overtime Deductible"
|
||||
msgstr "可扣加班時數"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_res_users__request_overtime
|
||||
msgid "Request Overtime"
|
||||
msgstr "要求加班"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form
|
||||
msgid "Save"
|
||||
msgstr "儲存"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_accrual_level_view_form
|
||||
msgid "Source"
|
||||
msgstr "來源"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough extra hours to extend this allocation."
|
||||
msgstr "員工沒有足夠的加班時數來延長此分配。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to extend this leave."
|
||||
msgstr "員工沒有足夠的加班時數來延長此休假。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "The employee does not have enough extra hours to request this leave."
|
||||
msgstr "員工沒有足夠的加班時數來申請休假。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave_allocation.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The employee does not have enough overtime hours to request this leave."
|
||||
msgstr "員工沒有足夠的加班時數來申請休假。"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave
|
||||
msgid "Time Off"
|
||||
msgstr "休假"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "假別分配申請"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_hr_leave_type
|
||||
msgid "Time Off Type"
|
||||
msgstr "休假類型"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave__employee_overtime
|
||||
#: model:ir.model.fields,field_description:hr_holidays_attendance.field_hr_leave_allocation__employee_overtime
|
||||
msgid "Total Overtime"
|
||||
msgstr "總加班時間"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#: model:ir.model,name:hr_holidays_attendance.model_res_users
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
#. module: hr_holidays_attendance
|
||||
#. odoo-python
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#: code:addons/hr_holidays_attendance/models/hr_leave.py:0
|
||||
#, python-format
|
||||
msgid "You do not have enough extra hours to request this leave"
|
||||
msgstr "您沒有足夠的加班時數來申請此休假"
|
10
models/__init__.py
Normal file
10
models/__init__.py
Normal file
@ -0,0 +1,10 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import hr_attendance
|
||||
from . import hr_leave_allocation
|
||||
from . import hr_leave_accrual_plan_level
|
||||
from . import hr_leave_type
|
||||
from . import hr_leave
|
||||
from . import res_company
|
||||
from . import res_users
|
14
models/hr_attendance.py
Normal file
14
models/hr_attendance.py
Normal file
@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
from odoo.osv.expression import AND
|
||||
|
||||
|
||||
class HrAttendance(models.Model):
|
||||
_inherit = "hr.attendance"
|
||||
|
||||
def _get_overtime_leave_domain(self):
|
||||
domain = super()._get_overtime_leave_domain()
|
||||
# resource_id = False => Public holidays
|
||||
return AND([domain, ['|', ('holiday_id.holiday_status_id.time_type', '=', 'leave'), ('resource_id', '=', False)]])
|
119
models/hr_leave.py
Normal file
119
models/hr_leave.py
Normal file
@ -0,0 +1,119 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from collections import defaultdict
|
||||
from datetime import timedelta
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.tools import float_round
|
||||
|
||||
|
||||
class HRLeave(models.Model):
|
||||
_inherit = 'hr.leave'
|
||||
|
||||
overtime_id = fields.Many2one('hr.attendance.overtime', string='Extra Hours')
|
||||
employee_overtime = fields.Float(related='employee_id.total_overtime')
|
||||
overtime_deductible = fields.Boolean(compute='_compute_overtime_deductible')
|
||||
|
||||
@api.depends('holiday_status_id')
|
||||
def _compute_overtime_deductible(self):
|
||||
for leave in self:
|
||||
leave.overtime_deductible = leave.holiday_status_id.overtime_deductible and leave.holiday_status_id.requires_allocation == 'no'
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
res = super().create(vals_list)
|
||||
self._check_overtime_deductible(res)
|
||||
return res
|
||||
|
||||
def write(self, vals):
|
||||
res = super().write(vals)
|
||||
fields_to_check = {'number_of_days', 'request_date_from', 'request_date_to', 'state', 'employee_id', 'holiday_status_id'}
|
||||
if not any(field for field in fields_to_check if field in vals):
|
||||
return res
|
||||
if vals.get('holiday_status_id'):
|
||||
self._check_overtime_deductible(self)
|
||||
#User may not have access to overtime_id field
|
||||
for leave in self.sudo().filtered('overtime_id'):
|
||||
# It must always be possible to refuse leave based on overtime
|
||||
if vals.get('state') in ['refuse']:
|
||||
continue
|
||||
employee = leave.employee_id
|
||||
duration = leave.number_of_hours_display
|
||||
overtime_duration = leave.overtime_id.sudo().duration
|
||||
if overtime_duration != duration:
|
||||
if duration > employee.total_overtime - overtime_duration:
|
||||
raise ValidationError(_('The employee does not have enough extra hours to extend this leave.'))
|
||||
leave.overtime_id.sudo().duration = -1 * duration
|
||||
return res
|
||||
|
||||
def _check_overtime_deductible(self, leaves):
|
||||
# If the type of leave is overtime deductible, we have to check that the employee has enough extra hours
|
||||
for leave in leaves:
|
||||
if not leave.overtime_deductible:
|
||||
continue
|
||||
employee = leave.employee_id.sudo()
|
||||
duration = leave.number_of_hours_display
|
||||
if duration > employee.total_overtime:
|
||||
if employee.user_id == self.env.user:
|
||||
raise ValidationError(_('You do not have enough extra hours to request this leave'))
|
||||
raise ValidationError(_('The employee does not have enough extra hours to request this leave.'))
|
||||
if not leave.sudo().overtime_id:
|
||||
leave.sudo().overtime_id = self.env['hr.attendance.overtime'].sudo().create({
|
||||
'employee_id': employee.id,
|
||||
'date': leave.date_from,
|
||||
'adjustment': True,
|
||||
'duration': -1 * duration,
|
||||
})
|
||||
|
||||
def action_draft(self):
|
||||
overtime_leaves = self.filtered('overtime_deductible')
|
||||
if any([l.employee_overtime < float_round(l.number_of_hours_display, 2) for l in overtime_leaves]):
|
||||
if self.employee_id.user_id.id == self.env.user.id:
|
||||
raise ValidationError(_('You do not have enough extra hours to request this leave'))
|
||||
raise ValidationError(_('The employee does not have enough extra hours to request this leave.'))
|
||||
|
||||
res = super().action_draft()
|
||||
overtime_leaves.overtime_id.sudo().unlink()
|
||||
for leave in overtime_leaves:
|
||||
overtime = self.env['hr.attendance.overtime'].sudo().create({
|
||||
'employee_id': leave.employee_id.id,
|
||||
'date': leave.date_from,
|
||||
'adjustment': True,
|
||||
'duration': -1 * leave.number_of_hours_display
|
||||
})
|
||||
leave.sudo().overtime_id = overtime.id
|
||||
return res
|
||||
|
||||
def action_refuse(self):
|
||||
res = super().action_refuse()
|
||||
self.sudo().overtime_id.unlink()
|
||||
return res
|
||||
|
||||
def _validate_leave_request(self):
|
||||
super()._validate_leave_request()
|
||||
self._update_leaves_overtime()
|
||||
|
||||
def _remove_resource_leave(self):
|
||||
res = super()._remove_resource_leave()
|
||||
self._update_leaves_overtime()
|
||||
return res
|
||||
|
||||
def _update_leaves_overtime(self):
|
||||
employee_dates = defaultdict(set)
|
||||
for leave in self:
|
||||
if leave.employee_id and leave.employee_company_id.hr_attendance_overtime:
|
||||
for d in range((leave.date_to - leave.date_from).days + 1):
|
||||
employee_dates[leave.employee_id].add(self.env['hr.attendance']._get_day_start_and_day(leave.employee_id, leave.date_from + timedelta(days=d)))
|
||||
if employee_dates:
|
||||
self.env['hr.attendance'].sudo()._update_overtime(employee_dates)
|
||||
|
||||
def unlink(self):
|
||||
# TODO master change to ondelete
|
||||
self.sudo().overtime_id.unlink()
|
||||
return super().unlink()
|
||||
|
||||
def _force_cancel(self, *args, **kwargs):
|
||||
super()._force_cancel(*args, **kwargs)
|
||||
self.sudo().overtime_id.unlink()
|
25
models/hr_leave_accrual_plan_level.py
Normal file
25
models/hr_leave_accrual_plan_level.py
Normal file
@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class AccrualPlanLevel(models.Model):
|
||||
_inherit = "hr.leave.accrual.level"
|
||||
|
||||
frequency_hourly_source = fields.Selection(
|
||||
selection=[
|
||||
('calendar', 'Calendar'),
|
||||
('attendance', 'Attendances')
|
||||
],
|
||||
default='calendar',
|
||||
compute='_compute_frequency_hourly_source',
|
||||
store=True,
|
||||
readonly=False,
|
||||
help="If the source is set to Calendar, the amount of worked hours will be computed from employee calendar and time off (if the plan is based on worked time). Otherwise, the amount of worked hours will be based on Attendance records.")
|
||||
|
||||
@api.depends('accrued_gain_time')
|
||||
def _compute_frequency_hourly_source(self):
|
||||
for level in self:
|
||||
if level.accrued_gain_time == 'start':
|
||||
level.frequency_hourly_source = 'calendar'
|
84
models/hr_leave_allocation.py
Normal file
84
models/hr_leave_allocation.py
Normal file
@ -0,0 +1,84 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import datetime
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.osv import expression
|
||||
|
||||
|
||||
class HolidaysAllocation(models.Model):
|
||||
_inherit = 'hr.leave.allocation'
|
||||
|
||||
def default_get(self, fields):
|
||||
res = super().default_get(fields)
|
||||
if 'holiday_status_id' in fields and self.env.context.get('deduct_extra_hours'):
|
||||
domain = [('overtime_deductible', '=', True), ('requires_allocation', '=', 'yes')]
|
||||
if self.env.context.get('deduct_extra_hours_employee_request', False):
|
||||
# Prevent loading manager allocated time off type in self request contexts
|
||||
domain = expression.AND([domain, [('employee_requests', '=', 'yes')]])
|
||||
leave_type = self.env['hr.leave.type'].search(domain, limit=1)
|
||||
res['holiday_status_id'] = leave_type.id
|
||||
return res
|
||||
|
||||
overtime_deductible = fields.Boolean(compute='_compute_overtime_deductible')
|
||||
overtime_id = fields.Many2one('hr.attendance.overtime', string='Extra Hours', groups='hr_holidays.group_hr_holidays_user')
|
||||
employee_overtime = fields.Float(related='employee_id.total_overtime')
|
||||
hr_attendance_overtime = fields.Boolean(related='employee_company_id.hr_attendance_overtime')
|
||||
|
||||
@api.depends('holiday_status_id')
|
||||
def _compute_overtime_deductible(self):
|
||||
for allocation in self:
|
||||
allocation.overtime_deductible = allocation.hr_attendance_overtime and allocation.holiday_status_id.overtime_deductible
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
res = super().create(vals_list)
|
||||
for allocation in res:
|
||||
if allocation.overtime_deductible and allocation.holiday_type == 'employee':
|
||||
duration = allocation.number_of_hours_display
|
||||
if duration > allocation.employee_id.total_overtime:
|
||||
raise ValidationError(_('The employee does not have enough overtime hours to request this leave.'))
|
||||
if not allocation.overtime_id:
|
||||
allocation.sudo().overtime_id = self.env['hr.attendance.overtime'].sudo().create({
|
||||
'employee_id': allocation.employee_id.id,
|
||||
'date': allocation.date_from,
|
||||
'adjustment': True,
|
||||
'duration': -1 * duration,
|
||||
})
|
||||
return res
|
||||
|
||||
def write(self, vals):
|
||||
res = super().write(vals)
|
||||
if 'number_of_days' not in vals:
|
||||
return res
|
||||
for allocation in self.filtered('overtime_id'):
|
||||
employee = allocation.employee_id
|
||||
duration = allocation.number_of_hours_display
|
||||
overtime_duration = allocation.overtime_id.sudo().duration
|
||||
if overtime_duration != duration:
|
||||
if duration > employee.total_overtime - overtime_duration:
|
||||
raise ValidationError(_('The employee does not have enough extra hours to extend this allocation.'))
|
||||
allocation.overtime_id.sudo().duration = -1 * duration
|
||||
return res
|
||||
|
||||
def action_refuse(self):
|
||||
res = super().action_refuse()
|
||||
self.overtime_id.sudo().unlink()
|
||||
return res
|
||||
|
||||
def _get_accrual_plan_level_work_entry_prorata(self, level, start_period, start_date, end_period, end_date):
|
||||
self.ensure_one()
|
||||
if level.frequency != 'hourly' or level.frequency_hourly_source != 'attendance':
|
||||
return super()._get_accrual_plan_level_work_entry_prorata(level, start_period, start_date, end_period, end_date)
|
||||
datetime_min_time = datetime.min.time()
|
||||
start_dt = datetime.combine(start_date, datetime_min_time)
|
||||
end_dt = datetime.combine(end_date, datetime_min_time)
|
||||
attendances = self.env['hr.attendance'].sudo().search([
|
||||
('employee_id', '=', self.employee_id.id),
|
||||
('check_in', '>=', start_dt),
|
||||
('check_out', '<=', end_dt),
|
||||
])
|
||||
work_entry_prorata = sum(attendances.mapped('worked_hours'))
|
||||
return work_entry_prorata
|
63
models/hr_leave_type.py
Normal file
63
models/hr_leave_type.py
Normal file
@ -0,0 +1,63 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.tools.misc import format_duration
|
||||
from odoo import _, api, fields, models
|
||||
|
||||
|
||||
class HRLeaveType(models.Model):
|
||||
_inherit = 'hr.leave.type'
|
||||
|
||||
hr_attendance_overtime = fields.Boolean(compute='_compute_hr_attendance_overtime')
|
||||
overtime_deductible = fields.Boolean(
|
||||
"Deduct Extra Hours", default=False,
|
||||
help="Once a time off of this type is approved, extra hours in attendances will be deducted.")
|
||||
|
||||
@api.depends('overtime_deductible', 'requires_allocation')
|
||||
@api.depends_context('request_type', 'leave', 'holiday_status_display_name', 'employee_id')
|
||||
def _compute_display_name(self):
|
||||
# Exclude hours available in allocation contexts, it might be confusing otherwise
|
||||
if not self.requested_display_name() or self._context.get('request_type', 'leave') == 'allocation':
|
||||
return super()._compute_display_name()
|
||||
|
||||
employee = self.env['hr.employee'].browse(self._context.get('employee_id')).sudo()
|
||||
if employee.total_overtime <= 0:
|
||||
return super()._compute_display_name()
|
||||
|
||||
overtime_leaves = self.filtered(lambda l_type: l_type.overtime_deductible and l_type.requires_allocation == 'no')
|
||||
for leave_type in overtime_leaves:
|
||||
leave_type.display_name = "%(name)s (%(count)s)" % {
|
||||
'name': leave_type.name,
|
||||
'count': _('%s hours available',
|
||||
format_duration(employee.total_overtime)),
|
||||
}
|
||||
super(HRLeaveType, self - overtime_leaves)._compute_display_name()
|
||||
|
||||
def get_allocation_data(self, employees, date=None):
|
||||
res = super().get_allocation_data(employees, date)
|
||||
deductible_time_off_types = self.env['hr.leave.type'].search([
|
||||
('overtime_deductible', '=', True),
|
||||
('requires_allocation', '=', 'no')])
|
||||
leave_type_names = deductible_time_off_types.mapped('name')
|
||||
for employee in res:
|
||||
for leave_data in res[employee]:
|
||||
if leave_data[0] in leave_type_names:
|
||||
leave_data[1]['virtual_remaining_leaves'] = employee.sudo().total_overtime
|
||||
leave_data[1]['overtime_deductible'] = True
|
||||
else:
|
||||
leave_data[1]['overtime_deductible'] = False
|
||||
return res
|
||||
|
||||
def _get_days_request(self, date=None):
|
||||
res = super()._get_days_request(date)
|
||||
res[1]['overtime_deductible'] = self.overtime_deductible
|
||||
return res
|
||||
|
||||
@api.depends('company_id.hr_attendance_overtime')
|
||||
def _compute_hr_attendance_overtime(self):
|
||||
# If no company is linked to the time off type, use the current company's setting
|
||||
for leave_type in self:
|
||||
if leave_type.company_id:
|
||||
leave_type.hr_attendance_overtime = leave_type.company_id.hr_attendance_overtime
|
||||
else:
|
||||
leave_type.hr_attendance_overtime = self.env.company.hr_attendance_overtime
|
27
models/res_company.py
Normal file
27
models/res_company.py
Normal file
@ -0,0 +1,27 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = 'res.company'
|
||||
|
||||
@api.model
|
||||
def _check_extra_hours_time_off(self):
|
||||
extra_hours_time_off_type = self.env.ref('hr_holidays_attendance.holiday_status_extra_hours', raise_if_not_found=False)
|
||||
if not extra_hours_time_off_type:
|
||||
return
|
||||
all_companies = self.env['res.company'].sudo().search([])
|
||||
# Unarchive time of type if the feature is enabled
|
||||
if any(company.hr_attendance_overtime and not extra_hours_time_off_type.active for company in all_companies):
|
||||
extra_hours_time_off_type.toggle_active()
|
||||
# Archive time of type if the feature is disabled for all the company
|
||||
if all(not company.hr_attendance_overtime and extra_hours_time_off_type.active for company in all_companies):
|
||||
extra_hours_time_off_type.toggle_active()
|
||||
|
||||
def write(self, vals):
|
||||
res = super().write(vals)
|
||||
if 'hr_attendance_overtime' in vals:
|
||||
self._check_extra_hours_time_off()
|
||||
return res
|
32
models/res_users.py
Normal file
32
models/res_users.py
Normal file
@ -0,0 +1,32 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
request_overtime = fields.Boolean(compute='_compute_request_overtime')
|
||||
|
||||
@property
|
||||
def SELF_READABLE_FIELDS(self):
|
||||
return super().SELF_READABLE_FIELDS + ['request_overtime']
|
||||
|
||||
@api.depends_context('uid')
|
||||
@api.depends('total_overtime')
|
||||
def _compute_request_overtime(self):
|
||||
is_holiday_user = self.env.user.has_group('hr_holidays.group_hr_holidays_user')
|
||||
time_off_types = self.env['hr.leave.type'].search_count([
|
||||
('requires_allocation', '=', 'yes'),
|
||||
('employee_requests', '=', 'yes'),
|
||||
('overtime_deductible', '=', True)
|
||||
])
|
||||
for user in self:
|
||||
if user.total_overtime >= 1:
|
||||
if is_holiday_user:
|
||||
user.request_overtime = True
|
||||
else:
|
||||
user.request_overtime = time_off_types
|
||||
else:
|
||||
user.request_overtime = False
|
33
static/src/xml/time_off_calendar.xml
Normal file
33
static/src/xml/time_off_calendar.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<templates id="template" xml:space="preserve">
|
||||
<t t-name="hr_holidays_attendance.TimeOffCard" t-inherit="hr_holidays.TimeOffCard" t-inherit-mode="extension">
|
||||
<xpath expr="//t[@t-set='duration']" position="replace">
|
||||
<t t-set="duration" t-value="props.requires_allocation || props.data['overtime_deductible']?props.data['virtual_remaining_leaves']:props.data['virtual_leaves_taken']" />
|
||||
</xpath>
|
||||
<xpath expr="//t[@t-set='show_popover']" position="replace">
|
||||
<t t-set="show_popover" t-value="!props.data['overtime_deductible']"/>
|
||||
</xpath>
|
||||
<xpath expr="//t[@name='duration_unit']" position="attributes">
|
||||
<attribute name="t-if">props.data.request_unit == 'hour' || props.data['overtime_deductible']</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//t[@name='duration_type']" position="attributes">
|
||||
<attribute name="t-if">props.requires_allocation || props.data['overtime_deductible']</attribute>
|
||||
</xpath>
|
||||
</t>
|
||||
|
||||
<t t-name="hr_holidays_attendance.TimeOffCardMobile" t-inherit="hr_holidays.TimeOffCardMobile" t-inherit-mode="extension">
|
||||
<xpath expr="//t[@t-set='duration']" position="replace">
|
||||
<t t-set="duration" t-value="props.requires_allocation || props.data['overtime_deductible']?props.data['virtual_remaining_leaves']:props.data['virtual_leaves_taken']" />
|
||||
</xpath>
|
||||
<xpath expr="//t[@name='duration_type']" position="before">
|
||||
<t t-if="props.data['overtime_deductible'] == true && !props.requires_allocation">
|
||||
<strong t-esc="duration" class="o_timeoff_green"/> <t t-if="props.data['request_unit'] == 'hour'">Hours</t><t t-else="">Days</t> <span class="o_timeoff_green">Available</span>
|
||||
</t>
|
||||
</xpath>
|
||||
<xpath expr="//t[@name='duration_type']" position="attributes">
|
||||
<attribute name="t-if"/>
|
||||
<attribute name="t-elif">props.requires_allocation</attribute>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
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_holidays_overtime
|
||||
from . import test_accrual_allocations
|
69
tests/test_accrual_allocations.py
Normal file
69
tests/test_accrual_allocations.py
Normal file
@ -0,0 +1,69 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import datetime
|
||||
from freezegun import freeze_time
|
||||
from dateutil.relativedelta import relativedelta
|
||||
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.hr_holidays.tests.common import TestHrHolidaysCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install', 'accruals')
|
||||
class TestAccrualAllocationsAttendance(TestHrHolidaysCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestAccrualAllocationsAttendance, cls).setUpClass()
|
||||
cls.leave_type = cls.env['hr.leave.type'].create({
|
||||
'name': 'Paid Time Off',
|
||||
'time_type': 'leave',
|
||||
'requires_allocation': 'yes',
|
||||
'allocation_validation_type': 'officer',
|
||||
})
|
||||
|
||||
def test_frequency_hourly_attendance(self):
|
||||
with freeze_time("2017-12-5"):
|
||||
accrual_plan = self.env['hr.leave.accrual.plan'].with_context(tracking_disable=True).create({
|
||||
'name': 'Accrual Plan For Test',
|
||||
'is_based_on_worked_time': True,
|
||||
'level_ids': [(0, 0, {
|
||||
'start_count': 1,
|
||||
'start_type': 'day',
|
||||
'added_value': 1,
|
||||
'added_value_type': 'day',
|
||||
'frequency': 'hourly',
|
||||
'frequency_hourly_source': 'attendance',
|
||||
'cap_accrued_time': True,
|
||||
'maximum_leave': 10000
|
||||
})],
|
||||
})
|
||||
allocation = self.env['hr.leave.allocation'].with_user(self.user_hrmanager_id).with_context(tracking_disable=True).create({
|
||||
'name': 'Accrual allocation for employee',
|
||||
'accrual_plan_id': accrual_plan.id,
|
||||
'employee_id': self.employee_emp.id,
|
||||
'holiday_status_id': self.leave_type.id,
|
||||
'number_of_days': 0,
|
||||
'allocation_type': 'accrual',
|
||||
})
|
||||
allocation.action_validate()
|
||||
self.assertFalse(allocation.nextcall, 'There should be no nextcall set on the allocation.')
|
||||
self.assertEqual(allocation.number_of_days, 0, 'There should be no days allocated yet.')
|
||||
allocation._update_accrual()
|
||||
tomorrow = datetime.date.today() + relativedelta(days=2)
|
||||
self.assertEqual(allocation.number_of_days, 0, 'There should be no days allocated yet. The accrual starts tomorrow.')
|
||||
|
||||
self.env['hr.attendance'].create({
|
||||
'employee_id': self.employee_emp.id,
|
||||
'check_in': datetime.datetime(2017, 12, 6, 8, 0, 0),
|
||||
'check_out': datetime.datetime(2017, 12, 6, 13, 22, 0),
|
||||
})
|
||||
|
||||
with freeze_time(tomorrow):
|
||||
allocation._update_accrual()
|
||||
nextcall = datetime.date.today() + relativedelta(days=1)
|
||||
self.assertAlmostEqual(allocation.number_of_days, 4.37, places=2)
|
||||
self.assertEqual(allocation.nextcall, nextcall, 'The next call date of the cron should be in 2 days.')
|
||||
allocation._update_accrual()
|
||||
self.assertAlmostEqual(allocation.number_of_days, 4.37, places=2)
|
270
tests/test_holidays_overtime.py
Normal file
270
tests/test_holidays_overtime.py
Normal file
@ -0,0 +1,270 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import datetime
|
||||
|
||||
from odoo.tests import new_test_user
|
||||
from odoo.tests.common import TransactionCase, tagged
|
||||
|
||||
from odoo.exceptions import AccessError, ValidationError
|
||||
|
||||
from freezegun import freeze_time
|
||||
import time
|
||||
|
||||
@tagged('post_install', '-at_install', 'holidays_attendance')
|
||||
class TestHolidaysOvertime(TransactionCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.company = cls.env['res.company'].create({
|
||||
'name': 'SweatChipChop Inc.',
|
||||
'hr_attendance_overtime': True,
|
||||
'overtime_start_date': datetime(2021, 1, 1),
|
||||
})
|
||||
cls.user = new_test_user(cls.env, login='user', groups='base.group_user', company_id=cls.company.id).with_company(cls.company)
|
||||
cls.user_manager = new_test_user(cls.env, login='manager', groups='base.group_user,hr_holidays.group_hr_holidays_user,hr_attendance.group_hr_attendance_manager', company_id=cls.company.id).with_company(cls.company)
|
||||
|
||||
cls.manager = cls.env['hr.employee'].create({
|
||||
'name': 'Dominique',
|
||||
'user_id': cls.user_manager.id,
|
||||
'company_id': cls.company.id,
|
||||
})
|
||||
cls.employee = cls.env['hr.employee'].create({
|
||||
'name': 'Barnabé',
|
||||
'user_id': cls.user.id,
|
||||
'parent_id': cls.manager.id,
|
||||
'company_id': cls.company.id,
|
||||
})
|
||||
|
||||
cls.leave_type_no_alloc = cls.env['hr.leave.type'].create({
|
||||
'name': 'Overtime Compensation No Allocation',
|
||||
'company_id': cls.company.id,
|
||||
'requires_allocation': 'no',
|
||||
'overtime_deductible': True,
|
||||
})
|
||||
cls.leave_type_employee_allocation = cls.env['hr.leave.type'].create({
|
||||
'name': 'Overtime Compensation Employee Allocation',
|
||||
'company_id': cls.company.id,
|
||||
'requires_allocation': 'yes',
|
||||
'employee_requests': 'yes',
|
||||
'allocation_validation_type': 'officer',
|
||||
'overtime_deductible': True,
|
||||
})
|
||||
|
||||
def new_attendance(self, check_in, check_out=False):
|
||||
return self.env['hr.attendance'].sudo().create({
|
||||
'employee_id': self.employee.id,
|
||||
'check_in': check_in,
|
||||
'check_out': check_out,
|
||||
})
|
||||
|
||||
def test_deduct_button_visibility(self):
|
||||
with self.with_user('user'):
|
||||
self.assertFalse(self.user.request_overtime, 'Button should not be visible')
|
||||
|
||||
self.new_attendance(check_in=datetime(2021, 1, 2, 8), check_out=datetime(2021, 1, 2, 18))
|
||||
self.assertEqual(self.user.total_overtime, 10, 'Should have 10 hours of overtime')
|
||||
self.assertTrue(self.user.request_overtime, 'Button should be visible')
|
||||
|
||||
def test_check_overtime(self):
|
||||
with self.with_user('user'):
|
||||
self.assertEqual(self.user.total_overtime, 0, 'No overtime')
|
||||
|
||||
with self.assertRaises(ValidationError), self.cr.savepoint():
|
||||
self.env['hr.leave'].create({
|
||||
'name': 'no overtime',
|
||||
'employee_id': self.employee.id,
|
||||
'holiday_status_id': self.leave_type_no_alloc.id,
|
||||
'request_date_from': datetime(2021, 1, 4),
|
||||
'request_date_to': datetime(2021, 1, 4),
|
||||
'state': 'draft',
|
||||
})
|
||||
|
||||
self.new_attendance(check_in=datetime(2021, 1, 2, 8), check_out=datetime(2021, 1, 2, 16))
|
||||
self.assertEqual(self.employee.total_overtime, 8, 'Should have 8 hours of overtime')
|
||||
leave = self.env['hr.leave'].create({
|
||||
'name': 'no overtime',
|
||||
'employee_id': self.employee.id,
|
||||
'holiday_status_id': self.leave_type_no_alloc.id,
|
||||
'request_date_from': datetime(2021, 1, 4),
|
||||
'request_date_to': datetime(2021, 1, 4),
|
||||
})
|
||||
|
||||
# The employee doesn't have the right to read the overtime from the leave
|
||||
overtime = leave.sudo().overtime_id.with_user(self.user)
|
||||
|
||||
# An employee cannot delete an overtime adjustment
|
||||
with self.assertRaises(AccessError), self.cr.savepoint():
|
||||
overtime.unlink()
|
||||
|
||||
# ... nor change its duration
|
||||
with self.assertRaises(AccessError), self.cr.savepoint():
|
||||
overtime.duration = 8
|
||||
|
||||
def test_leave_adjust_overtime(self):
|
||||
self.new_attendance(check_in=datetime(2021, 1, 2, 8), check_out=datetime(2021, 1, 2, 16))
|
||||
self.assertEqual(self.employee.total_overtime, 8, 'Should have 8 hours of overtime')
|
||||
|
||||
leave = self.env['hr.leave'].create({
|
||||
'name': 'no overtime',
|
||||
'employee_id': self.employee.id,
|
||||
'holiday_status_id': self.leave_type_no_alloc.id,
|
||||
'request_date_from': datetime(2021, 1, 4),
|
||||
'request_date_to': datetime(2021, 1, 4),
|
||||
})
|
||||
|
||||
self.assertTrue(leave.overtime_id.adjustment, "An adjustment overtime should be created")
|
||||
self.assertEqual(leave.overtime_id.duration, -8)
|
||||
|
||||
self.assertEqual(self.employee.total_overtime, 0)
|
||||
|
||||
leave.action_refuse()
|
||||
self.assertFalse(leave.overtime_id.exists(), "Overtime should be deleted")
|
||||
self.assertEqual(self.employee.total_overtime, 8)
|
||||
|
||||
leave.action_draft()
|
||||
self.assertTrue(leave.overtime_id.exists(), "Overtime should be created")
|
||||
self.assertEqual(self.employee.total_overtime, 0)
|
||||
|
||||
overtime = leave.overtime_id
|
||||
leave.unlink()
|
||||
self.assertFalse(overtime.exists(), "Overtime should be deleted along with the leave")
|
||||
self.assertEqual(self.employee.total_overtime, 8)
|
||||
|
||||
def test_leave_check_overtime_write(self):
|
||||
self.new_attendance(check_in=datetime(2021, 1, 2, 8), check_out=datetime(2021, 1, 2, 16))
|
||||
self.new_attendance(check_in=datetime(2021, 1, 3, 8), check_out=datetime(2021, 1, 3, 16))
|
||||
self.assertEqual(self.employee.total_overtime, 16)
|
||||
|
||||
leave = self.env['hr.leave'].create({
|
||||
'name': 'no overtime',
|
||||
'employee_id': self.employee.id,
|
||||
'holiday_status_id': self.leave_type_no_alloc.id,
|
||||
'request_date_from': '2021-1-4',
|
||||
'request_date_to': '2021-1-4',
|
||||
})
|
||||
self.assertEqual(self.employee.total_overtime, 8)
|
||||
|
||||
leave.date_to = datetime(2021, 1, 5)
|
||||
self.assertEqual(self.employee.total_overtime, 0)
|
||||
with self.assertRaises(ValidationError), self.cr.savepoint():
|
||||
leave.date_to = datetime(2021, 1, 6)
|
||||
|
||||
leave.date_to = datetime(2021, 1, 4)
|
||||
self.assertEqual(self.employee.total_overtime, 8)
|
||||
|
||||
def test_employee_create_allocation(self):
|
||||
with self.with_user('user'):
|
||||
self.assertEqual(self.employee.total_overtime, 0)
|
||||
with self.assertRaises(ValidationError), self.cr.savepoint():
|
||||
self.env['hr.leave.allocation'].create({
|
||||
'name': 'test allocation',
|
||||
'holiday_status_id': self.leave_type_employee_allocation.id,
|
||||
'employee_id': self.employee.id,
|
||||
'number_of_days': 1,
|
||||
'state': 'confirm',
|
||||
'date_from': time.strftime('%Y-1-1'),
|
||||
'date_to': time.strftime('%Y-12-31'),
|
||||
})
|
||||
|
||||
self.new_attendance(check_in=datetime(2021, 1, 2, 8), check_out=datetime(2021, 1, 2, 16))
|
||||
self.assertAlmostEqual(self.employee.total_overtime, 8, 'Should have 8 hours of overtime')
|
||||
|
||||
self.env['hr.leave.allocation'].sudo().create({
|
||||
'name': 'test allocation',
|
||||
'holiday_status_id': self.leave_type_employee_allocation.id,
|
||||
'employee_id': self.employee.id,
|
||||
'number_of_days': 1,
|
||||
'state': 'confirm',
|
||||
'date_from': time.strftime('%Y-1-1'),
|
||||
'date_to': time.strftime('%Y-12-31'),
|
||||
})
|
||||
self.assertEqual(self.employee.total_overtime, 0)
|
||||
|
||||
leave_type = self.env['hr.leave.type'].sudo().create({
|
||||
'name': 'Overtime Compensation Employee Allocation',
|
||||
'company_id': self.company.id,
|
||||
'requires_allocation': 'yes',
|
||||
'employee_requests': 'yes',
|
||||
'allocation_validation_type': 'officer',
|
||||
'overtime_deductible': False,
|
||||
})
|
||||
|
||||
# User can request another allocation even without overtime
|
||||
self.env['hr.leave.allocation'].create({
|
||||
'name': 'test allocation',
|
||||
'holiday_status_id': leave_type.id,
|
||||
'employee_id': self.employee.id,
|
||||
'number_of_days': 1,
|
||||
'state': 'confirm',
|
||||
'date_from': time.strftime('%Y-1-1'),
|
||||
'date_to': time.strftime('%Y-12-31'),
|
||||
})
|
||||
|
||||
def test_allocation_check_overtime_write(self):
|
||||
self.new_attendance(check_in=datetime(2021, 1, 2, 8), check_out=datetime(2021, 1, 2, 16))
|
||||
self.new_attendance(check_in=datetime(2021, 1, 3, 8), check_out=datetime(2021, 1, 3, 16))
|
||||
self.assertEqual(self.employee.total_overtime, 16, 'Should have 16 hours of overtime')
|
||||
|
||||
alloc = self.env['hr.leave.allocation'].create({
|
||||
'name': 'test allocation',
|
||||
'holiday_status_id': self.leave_type_employee_allocation.id,
|
||||
'employee_id': self.employee.id,
|
||||
'number_of_days': 1,
|
||||
'state': 'confirm',
|
||||
'date_from': time.strftime('%Y-1-1'),
|
||||
'date_to': time.strftime('%Y-12-31'),
|
||||
})
|
||||
self.assertEqual(self.employee.total_overtime, 8)
|
||||
|
||||
with self.assertRaises(ValidationError), self.cr.savepoint():
|
||||
alloc.number_of_days = 3
|
||||
|
||||
alloc.number_of_days = 2
|
||||
self.assertEqual(self.employee.total_overtime, 0)
|
||||
|
||||
@freeze_time('2022-1-1')
|
||||
def test_leave_check_cancel(self):
|
||||
self.new_attendance(check_in=datetime(2021, 1, 2, 8), check_out=datetime(2021, 1, 2, 16))
|
||||
self.new_attendance(check_in=datetime(2021, 1, 3, 8), check_out=datetime(2021, 1, 3, 16))
|
||||
self.assertEqual(self.employee.total_overtime, 16)
|
||||
|
||||
leave = self.env['hr.leave'].create({
|
||||
'name': 'no overtime',
|
||||
'employee_id': self.employee.id,
|
||||
'holiday_status_id': self.leave_type_no_alloc.id,
|
||||
'request_date_from': '2022-1-6',
|
||||
'request_date_to': '2022-1-6',
|
||||
})
|
||||
leave.with_user(self.user_manager).action_validate()
|
||||
self.assertEqual(self.employee.total_overtime, 8)
|
||||
|
||||
self.assertTrue(leave.with_user(self.user).can_cancel)
|
||||
self.env['hr.holidays.cancel.leave'].with_user(self.user).with_context(default_leave_id=leave.id) \
|
||||
.new({'reason': 'Test remove holiday'}) \
|
||||
.action_cancel_leave()
|
||||
self.assertFalse(leave.overtime_id.exists())
|
||||
|
||||
def test_public_leave_overtime(self):
|
||||
leave = self.env['resource.calendar.leaves'].create([{
|
||||
'name': 'Public Holiday',
|
||||
'date_from': datetime(2022, 5, 5, 6),
|
||||
'date_to': datetime(2022, 5, 5, 18),
|
||||
}])
|
||||
|
||||
leave.company_id.write({
|
||||
'hr_attendance_overtime': True,
|
||||
'overtime_start_date': datetime(2021, 1, 1),
|
||||
})
|
||||
self.assertNotEqual(leave.company_id, self.employee.company_id)
|
||||
self.manager.company_id = leave.company_id.id
|
||||
|
||||
for emp in [self.employee, self.manager]:
|
||||
self.env['hr.attendance'].create({
|
||||
'employee_id': emp.id,
|
||||
'check_in': datetime(2022, 5, 5, 8),
|
||||
'check_out': datetime(2022, 5, 5, 17),
|
||||
})
|
||||
|
||||
self.assertEqual(self.employee.total_overtime, 0, "Should have 0 hours of overtime as the public holiday doesn't impact his company")
|
||||
self.assertEqual(self.manager.total_overtime, 8, 'Should have 8 hours of overtime (there is one hour of lunch)')
|
23
views/hr_employee_views.xml
Normal file
23
views/hr_employee_views.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="hr_employee_view_form_inherit" model="ir.ui.view">
|
||||
<field name="name">hr.holidays.attendance.employee.view.form.inherit</field>
|
||||
<field name="model">hr.employee</field>
|
||||
<field name="inherit_id" ref="hr.view_employee_form"/>
|
||||
<field name="priority" eval="120"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//header" position="inside">
|
||||
<field name="total_overtime" invisible="1"/>
|
||||
<button
|
||||
name="%(hr_leave_allocation_overtime_manager_action)d"
|
||||
string="Deduct Extra Hours"
|
||||
type="action"
|
||||
groups="hr_holidays.group_hr_holidays_user"
|
||||
context="{'default_employee_id': id, 'deduct_extra_hours': True}"
|
||||
invisible="total_overtime <= 1"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
20
views/hr_leave_accrual_level_views.xml
Normal file
20
views/hr_leave_accrual_level_views.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<odoo>
|
||||
<record id="hr_leave_accrual_level_view_form" model="ir.ui.view">
|
||||
<field name="name">hr.leave.accrual.level.form</field>
|
||||
<field name="model">hr.leave.accrual.level</field>
|
||||
<field name="inherit_id" ref="hr_holidays.hr_accrual_level_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<div name="hourly" position="inside">
|
||||
<div class="o_row" invisible="accrued_gain_time == 'start'">
|
||||
<label for="frequency_hourly_source" string="Source"/>
|
||||
<field
|
||||
name="frequency_hourly_source"
|
||||
required="frequency == 'hourly'"
|
||||
widget="radio"
|
||||
options="{'horizontal': true}"/>
|
||||
</div>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
71
views/hr_leave_allocation_views.xml
Normal file
71
views/hr_leave_allocation_views.xml
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<odoo>
|
||||
<record id="hr_attendance_holidays_hr_leave_allocation_view_form_inherit" model="ir.ui.view">
|
||||
<field name="model">hr.leave.allocation</field>
|
||||
<field name="inherit_id" ref="hr_holidays.hr_leave_allocation_view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="(//div[@name='duration_display']/span)[last()]" position="after">
|
||||
<field name="hr_attendance_overtime" invisible="1" />
|
||||
<field name="overtime_deductible" invisible="1" />
|
||||
<field name="employee_overtime" invisible="1" />
|
||||
<div class="oe_inline"
|
||||
invisible="not hr_attendance_overtime or not employee_id or not overtime_deductible or employee_overtime <= 0">
|
||||
<field name="employee_overtime" nolabel="1" widget="float_time" class="text-success" /> Extra Hours Available
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_leave_allocation_overtime_view_form" model="ir.ui.view">
|
||||
<field name="model">hr.leave.allocation</field>
|
||||
<field name="inherit_id" ref="hr_attendance_holidays_hr_leave_allocation_view_form_inherit" />
|
||||
<field name="mode">primary</field>
|
||||
<field name="priority">60</field>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//header" position="attributes">
|
||||
<attribute name="invisible">1</attribute>
|
||||
</xpath>
|
||||
<div name="button_box" position="attributes">
|
||||
<attribute name="invisible">1</attribute>
|
||||
</div>
|
||||
<xpath expr="//field[@name='holiday_status_id']" position="attributes">
|
||||
<attribute name="domain">[('overtime_deductible', '=', True), ('requires_allocation', '=', 'yes'), ('employee_requests', '=', 'yes')]</attribute>
|
||||
<attribute name="options">{'no_create': True, 'no_open': True}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//sheet" position="after">
|
||||
<footer>
|
||||
<button string="Save" special="save" class="btn btn-primary" close="1" />
|
||||
<button string="Discard" special="cancel" class="btn-secondary" close="1" />
|
||||
</footer>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_leave_allocation_overtime_manager_view_form" model="ir.ui.view">
|
||||
<field name="model">hr.leave.allocation</field>
|
||||
<field name="inherit_id" ref="hr_leave_allocation_overtime_view_form" />
|
||||
<field name="mode">primary</field>
|
||||
<field name="priority">70</field>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='holiday_status_id']" position="attributes">
|
||||
<attribute name="domain">[('overtime_deductible', '=', True), ('requires_allocation', '=', 'yes')]</attribute>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_leave_allocation_overtime_action" model="ir.actions.act_window">
|
||||
<field name="name">New Allocation Request</field>
|
||||
<field name="res_model">hr.leave.allocation</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_ids" eval="[(5, 0, 0), (0, 0, {'view_mode': 'form', 'view_id': ref('hr_leave_allocation_overtime_view_form')})]"/>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_leave_allocation_overtime_manager_action" model="ir.actions.act_window">
|
||||
<field name="name">New Allocation Request</field>
|
||||
<field name="res_model">hr.leave.allocation</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_ids" eval="[(5, 0, 0), (0, 0, {'view_mode': 'form', 'view_id': ref('hr_leave_allocation_overtime_manager_view_form')})]"/>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
</odoo>
|
14
views/hr_leave_type_views.xml
Normal file
14
views/hr_leave_type_views.xml
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo>
|
||||
<record id="hr_leave_type_view_form" model="ir.ui.view">
|
||||
<field name="name">hr.leave.type.view.form.inherit</field>
|
||||
<field name="model">hr.leave.type</field>
|
||||
<field name="inherit_id" ref="hr_holidays.edit_holiday_status_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='request_unit']" position="after">
|
||||
<field name="hr_attendance_overtime" invisible="1" />
|
||||
<field name="overtime_deductible" invisible="not hr_attendance_overtime"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
30
views/hr_leave_views.xml
Normal file
30
views/hr_leave_views.xml
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<odoo>
|
||||
<record id="hr_leave_view_form" model="ir.ui.view">
|
||||
<field name="model">hr.leave</field>
|
||||
<field name="inherit_id" ref="hr_holidays.hr_leave_view_form_manager" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="(//div[@name='duration_display']/div)[last()]" position="after">
|
||||
<field name="overtime_deductible" invisible="1" />
|
||||
<field name="employee_overtime" invisible="1" />
|
||||
<div invisible="not employee_id or not overtime_deductible or employee_overtime <= 0">
|
||||
<field name="employee_overtime" nolabel="1" widget="float_time" class="text-success" style="width: 6rem;" /> Extra Hours Available
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="hr_leave_view_form_overtime" model="ir.ui.view">
|
||||
<field name="model">hr.leave</field>
|
||||
<field name="inherit_id" ref="hr_holidays.hr_leave_view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="(//div[@name='duration_display']/div)[last()]" position="after">
|
||||
<field name="overtime_deductible" invisible="1" />
|
||||
<field name="employee_overtime" invisible="1" />
|
||||
<div invisible="not employee_id or not overtime_deductible or employee_overtime <= 0">
|
||||
<field name="employee_overtime" nolabel="1" widget="float_time" class="text-success" style="max-width: 6rem;" /> Extra Hours Available
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
19
views/res_users_views.xml
Normal file
19
views/res_users_views.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="res_users_view_form" model="ir.ui.view">
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="hr.res_users_view_form_profile"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//header" position="inside">
|
||||
<field name="employee_id" invisible="1" />
|
||||
<field name="request_overtime" invisible="1" />
|
||||
<button
|
||||
name="%(hr_leave_allocation_overtime_action)d"
|
||||
string="Deduct Extra Hours"
|
||||
type="action"
|
||||
context="{'default_employee_id': employee_id, 'deduct_extra_hours': True, 'deduct_extra_hours_employee_request': True}"
|
||||
invisible="not request_overtime"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user