From 07786d6f10d4da59ff0f77afc83a83a4e3da06c2 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:09:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 5 + __manifest__.py | 20 +++ i18n/af.po | 140 +++++++++++++++++ i18n/am.po | 136 ++++++++++++++++ i18n/ar.po | 120 +++++++++++++++ i18n/az.po | 141 +++++++++++++++++ i18n/bg.po | 122 +++++++++++++++ i18n/bs.po | 141 +++++++++++++++++ i18n/ca.po | 127 +++++++++++++++ i18n/cs.po | 122 +++++++++++++++ i18n/da.po | 121 +++++++++++++++ i18n/de.po | 122 +++++++++++++++ i18n/el.po | 140 +++++++++++++++++ i18n/en_GB.po | 139 +++++++++++++++++ i18n/es.po | 121 +++++++++++++++ i18n/es_419.po | 120 +++++++++++++++ i18n/es_BO.po | 139 +++++++++++++++++ i18n/es_CL.po | 139 +++++++++++++++++ i18n/es_CO.po | 139 +++++++++++++++++ i18n/es_CR.po | 139 +++++++++++++++++ i18n/es_DO.po | 139 +++++++++++++++++ i18n/es_EC.po | 139 +++++++++++++++++ i18n/es_PE.po | 139 +++++++++++++++++ i18n/es_PY.po | 139 +++++++++++++++++ i18n/es_VE.po | 139 +++++++++++++++++ i18n/et.po | 129 ++++++++++++++++ i18n/eu.po | 139 +++++++++++++++++ i18n/fa.po | 123 +++++++++++++++ i18n/fi.po | 125 +++++++++++++++ i18n/fo.po | 139 +++++++++++++++++ i18n/fr.po | 120 +++++++++++++++ i18n/fr_CA.po | 139 +++++++++++++++++ i18n/gl.po | 139 +++++++++++++++++ i18n/gu.po | 140 +++++++++++++++++ i18n/he.po | 125 +++++++++++++++ i18n/hr.po | 145 ++++++++++++++++++ i18n/hr_timesheet_attendance.pot | 116 ++++++++++++++ i18n/hu.po | 124 +++++++++++++++ i18n/id.po | 121 +++++++++++++++ i18n/is.po | 136 ++++++++++++++++ i18n/it.po | 120 +++++++++++++++ i18n/ja.po | 121 +++++++++++++++ i18n/ka.po | 139 +++++++++++++++++ i18n/kab.po | 139 +++++++++++++++++ i18n/km.po | 139 +++++++++++++++++ i18n/ko.po | 120 +++++++++++++++ i18n/lb.po | 136 ++++++++++++++++ i18n/lo.po | 136 ++++++++++++++++ i18n/lt.po | 123 +++++++++++++++ i18n/lv.po | 123 +++++++++++++++ i18n/mk.po | 139 +++++++++++++++++ i18n/mn.po | 143 +++++++++++++++++ i18n/nb.po | 142 +++++++++++++++++ i18n/ne.po | 136 ++++++++++++++++ i18n/nl.po | 122 +++++++++++++++ i18n/pl.po | 121 +++++++++++++++ i18n/pt.po | 120 +++++++++++++++ i18n/pt_BR.po | 123 +++++++++++++++ i18n/ro.po | 142 +++++++++++++++++ i18n/ru.po | 123 +++++++++++++++ i18n/sk.po | 120 +++++++++++++++ i18n/sl.po | 124 +++++++++++++++ i18n/sq.po | 139 +++++++++++++++++ i18n/sr.po | 125 +++++++++++++++ i18n/sr@latin.po | 136 ++++++++++++++++ i18n/sv.po | 123 +++++++++++++++ i18n/th.po | 121 +++++++++++++++ i18n/tr.po | 124 +++++++++++++++ i18n/uk.po | 122 +++++++++++++++ i18n/vi.po | 120 +++++++++++++++ i18n/zh_CN.po | 120 +++++++++++++++ i18n/zh_TW.po | 121 +++++++++++++++ models/__init__.py | 4 + models/ir_ui_menu.py | 14 ++ report/__init__.py | 4 + report/hr_timesheet_attendance_report.py | 71 +++++++++ .../hr_timesheet_attendance_report_view.xml | 79 ++++++++++ ...r_timesheet_attendance_report_security.xml | 29 ++++ security/ir.model.access.csv | 2 + tests/__init__.py | 4 + tests/test_timesheet_attendance.py | 34 ++++ upgrades/1.1/pre-migrate.py | 14 ++ 82 files changed, 9405 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 i18n/af.po create mode 100644 i18n/am.po create mode 100644 i18n/ar.po create mode 100644 i18n/az.po create mode 100644 i18n/bg.po create mode 100644 i18n/bs.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/el.po create mode 100644 i18n/en_GB.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/es_BO.po create mode 100644 i18n/es_CL.po create mode 100644 i18n/es_CO.po create mode 100644 i18n/es_CR.po create mode 100644 i18n/es_DO.po create mode 100644 i18n/es_EC.po create mode 100644 i18n/es_PE.po create mode 100644 i18n/es_PY.po create mode 100644 i18n/es_VE.po create mode 100644 i18n/et.po create mode 100644 i18n/eu.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fo.po create mode 100644 i18n/fr.po create mode 100644 i18n/fr_CA.po create mode 100644 i18n/gl.po create mode 100644 i18n/gu.po create mode 100644 i18n/he.po create mode 100644 i18n/hr.po create mode 100644 i18n/hr_timesheet_attendance.pot create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/is.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ka.po create mode 100644 i18n/kab.po create mode 100644 i18n/km.po create mode 100644 i18n/ko.po create mode 100644 i18n/lb.po create mode 100644 i18n/lo.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/mk.po create mode 100644 i18n/mn.po create mode 100644 i18n/nb.po create mode 100644 i18n/ne.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ro.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sq.po create mode 100644 i18n/sr.po create mode 100644 i18n/sr@latin.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/ir_ui_menu.py create mode 100644 report/__init__.py create mode 100644 report/hr_timesheet_attendance_report.py create mode 100644 report/hr_timesheet_attendance_report_view.xml create mode 100644 security/hr_timesheet_attendance_report_security.xml create mode 100644 security/ir.model.access.csv create mode 100644 tests/__init__.py create mode 100644 tests/test_timesheet_attendance.py create mode 100644 upgrades/1.1/pre-migrate.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..2609681 --- /dev/null +++ b/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models +from . import report diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..4a1f3c1 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': "Timesheets/attendances reporting", + 'description': """ + Module linking the attendance module to the timesheet app. + """, + 'category': 'Hidden', + 'version': '1.1', + + 'depends': ['hr_timesheet', 'hr_attendance'], + 'data': [ + 'security/ir.model.access.csv', + 'security/hr_timesheet_attendance_report_security.xml', + 'report/hr_timesheet_attendance_report_view.xml', + ], + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/i18n/af.po b/i18n/af.po new file mode 100644 index 0000000..147ccb1 --- /dev/null +++ b/i18n/af.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Last-Translator: Martin Trigaux, 2022\n" +"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Maatskappy" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Vertoningsnaam" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Gebruiker" diff --git a/i18n/am.po b/i18n/am.po new file mode 100644 index 0000000..893253a --- /dev/null +++ b/i18n/am.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..5c8c033 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "تكلفة الحضور " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "ساعات الحضور " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "الشركة " + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "مقارنة الوقت الذي يسجله موظفوك مع حضورهم. " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "فرق التكلفة " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "التاريخ" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "اسم العرض " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "الموظف" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "فرق الساعات " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "المُعرف" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "القائمة" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "قسمي " + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "فريقي" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "لا توجد أي بيانات بعد! " + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "حضور الجداول الزمنية " + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "تقرير حضور الجداول الزمنية " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "تكلفة الجداول الزمنية " + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "تحليل الجداول الزمنية / الحضور " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "ساعات الجداول الزمنية " diff --git a/i18n/az.po b/i18n/az.po new file mode 100644 index 0000000..1df0f8d --- /dev/null +++ b/i18n/az.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Jumshud Sultanov , 2022 +# erpgo translator , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Last-Translator: erpgo translator , 2022\n" +"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Şirkət" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Tarix" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Ekran Adı" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "İşçi" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menyu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Hələ məlumat yoxdur!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Tabel Xərcləri" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "İstifadəçi" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..d24b53d --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# KeyVillage, 2023 +# aleksandar ivanov, 2023 +# Maria Boyadjieva , 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: Maria Boyadjieva , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Фирма" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Дата" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Служител" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Меню" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Моят екип" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Стойност на график" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/bs.po b/i18n/bs.po new file mode 100644 index 0000000..3e649d9 --- /dev/null +++ b/i18n/bs.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković , 2018 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Korisnik" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..40f999b --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# marcescu, 2023 +# jabiri7, 2023 +# RGB Consulting , 2023 +# Martin Trigaux, 2023 +# Josep Anton Belchi, 2023 +# José Cabrera Lozano , 2023 +# Óscar Fonseca , 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: Óscar Fonseca , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Cost d'assistència" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Hores d'assistències" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Empresa" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Compareu el temps registrat pels vostres empleats amb la seva assistència." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Diferència de cost" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Data" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Empleat" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Diferència d'hores" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menú" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "El meu departament" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "El meu equip" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Encara no hi han dades!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Assistència del full d'hores" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Informe Fulls d'hores Assistència" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Costos de fulls d'hores" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Hores del full d'hores" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..b0fa37a --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Jakub Smolka, 2023 +# Ivana Bartonkova, 2023 +# 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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Společnost" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Zobrazovací název" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Zaměstnanec" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Moje oddělení" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Můj tým" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Zatím žádná data!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Přehled časových výkazů a docházky" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Náklady podle pracovního výkazu" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Časové výkazy / Docházka" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..447dc87 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# lhmflexerp , 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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Virksomhed" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Dato" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Medarbejder" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Min afdeling" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mit team" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Ingen data endnu!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Fremmøderapport ud fra timesedler " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Timeseddel kostpris" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..aa6af6e --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Anwesenheitskosten" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Anwesenheitsstunden" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Vergleichen Sie die vom Mitarbeiter erfasste Zeit mit seinen " +"Anwesenheitszeiten." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Kostendifferenz" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Mitarbeiter" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Stundendifferenz" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menü" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Meine Abteilung" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mein Team" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Noch keine Daten vorhanden!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Zeiterfassung Anwesenheit" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Bericht zur Zeiterfassung und Anwesenheit" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Zeiterfassungskosten" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Analyse von Zeiterfassung/Anwesenheiten" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Zeiterfassungstunden" diff --git a/i18n/el.po b/i18n/el.po new file mode 100644 index 0000000..8333a1f --- /dev/null +++ b/i18n/el.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Kostas Goutoudis , 2018\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Ημερομηνία" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "Κωδικός" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Χρήστης" diff --git a/i18n/en_GB.po b/i18n/en_GB.po new file mode 100644 index 0000000..8bd7d20 --- /dev/null +++ b/i18n/en_GB.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..e13ef5d --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Coste de asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Horas de asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Compañía" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "Compare el tiempo registrado por sus empleados con su asistencia." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Diferencia de costes" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Fecha" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Empleado" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Horas de diferencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menú" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Mi departamento" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mi equipo" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "No hay información aún" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Hoja de asistencia en la asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Informe de asistencia de hoja de asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Coste del parte de horas" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Análisis de Hojas de asistencia/Asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Horas de las hojas de asistencia" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..b56c3c0 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Costo de asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Horas de asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Empresa" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "Compare el tiempo registrado por sus empleados con su asistencia." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Costo de diferencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Fecha" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Empleado" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Horas de diferencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menú" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Mi departamento" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mi equipo" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Todavía no hay información" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Asistencia en la hoja de horas" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Reporte de asistencia de la hoja de horas" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Costo de la hoja de horas" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Hojas de horas/Análisis de asistencia" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Horas de las hojas de horas" diff --git a/i18n/es_BO.po b/i18n/es_BO.po new file mode 100644 index 0000000..ee9ce5a --- /dev/null +++ b/i18n/es_BO.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"Language: es_BO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_CL.po b/i18n/es_CL.po new file mode 100644 index 0000000..4533bb6 --- /dev/null +++ b/i18n/es_CL.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_CO.po b/i18n/es_CO.po new file mode 100644 index 0000000..1f7ed13 --- /dev/null +++ b/i18n/es_CO.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_CR.po b/i18n/es_CR.po new file mode 100644 index 0000000..6595b9d --- /dev/null +++ b/i18n/es_CR.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_DO.po b/i18n/es_DO.po new file mode 100644 index 0000000..05af3aa --- /dev/null +++ b/i18n/es_DO.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_EC.po b/i18n/es_EC.po new file mode 100644 index 0000000..ad7a592 --- /dev/null +++ b/i18n/es_EC.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_PE.po b/i18n/es_PE.po new file mode 100644 index 0000000..482db16 --- /dev/null +++ b/i18n/es_PE.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_PY.po b/i18n/es_PY.po new file mode 100644 index 0000000..92e4b1f --- /dev/null +++ b/i18n/es_PY.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/es_VE.po b/i18n/es_VE.po new file mode 100644 index 0000000..cbe5d2a --- /dev/null +++ b/i18n/es_VE.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..b0107f3 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux, 2023 +# Arma Gedonsky , 2023 +# Martin Aavastik , 2023 +# Triine Aavik , 2023 +# Piia Paurson , 2023 +# Eneli Õigus , 2023 +# Leaanika Randmets, 2023 +# Birgit Vijar, 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Kohaloleku kulu" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Kohaloleku tunnid" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Ettevõte" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "Võrrelge oma töötajate registreeritud aega nende kohalolekuga." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Kulude erinevus" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Kuupäev" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Kuvatav nimi" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Töötaja" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Tundide erinevus" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menüü" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Minu osakond" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Minu meeskond" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Andmed puuduvad!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Kohaloleku ajaarvestus" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Kohaloleku ajaarvestuse aruanne" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Tunnihind (kulu)" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Ajaarvestuse / kohaloleku analüüs" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Tööajatabeli tunnid" diff --git a/i18n/eu.po b/i18n/eu.po new file mode 100644 index 0000000..ad834d6 --- /dev/null +++ b/i18n/eu.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..934c3d8 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Yousef Shadmanesh , 2023 +# Hamid Darabi, 2023 +# Martin Trigaux, 2023 +# Hanna Kheradroosta, 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: Hanna Kheradroosta, 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "شرکت" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "تاریخ" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "نام نمایش داده شده" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "کارمند" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "شناسه" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "منو" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "دپارتمان من" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "تیم من" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "هنوز هیچ داده ای وجود ندارد!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "برگه زمانی حضور و غیاب" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "برگه ساعت کارکرد گزارش حضور و غیاب" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "هزینه برگه ساعت کارکرد" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..1a363da --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux, 2023 +# Miika Nissi , 2023 +# Tuomo Aura , 2023 +# Jarmo Kortetjärvi , 2023 +# Kari Lindgren , 2023 +# Ossi Mantylahti , 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 , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Osallistumiskustannukset" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Läsnäolotunnit" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Yritys" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "Vertaa työntekijöidesi kirjaamia aikoja heidän läsnäoloonsa." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Kustannusero" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Päivämäärä" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Työntekijä" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Tuntien ero" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Valikko" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Oma osasto" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Oma tiimi" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Ei vielä tietoja!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Työaikakirjaus Läsnäolo" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Tuntikirjaukset / Läsnäolot -raportti" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Tuntikirjauksen kulu" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Työaikakirjauten Tunnit" diff --git a/i18n/fo.po b/i18n/fo.po new file mode 100644 index 0000000..02d2bc2 --- /dev/null +++ b/i18n/fo.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Vís navn" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..dff8fa2 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Coût de présence" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Heures de présence" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Société" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "Comparez le temps enregistré par vos employés avec leur présence." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Différence de coût" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Date" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nom d'affichage" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Employé" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Différence d'heures" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Mon département" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mon équipe" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Pas encore de données !" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Feuille de temps Présence" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Rapport de présence des feuilles de temps" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Coût des feuilles de temps" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Analyse feuilles de temps / présences" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Heures des feuilles de temps" diff --git a/i18n/fr_CA.po b/i18n/fr_CA.po new file mode 100644 index 0000000..ab31e30 --- /dev/null +++ b/i18n/fr_CA.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "Identifiant" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/gl.po b/i18n/gl.po new file mode 100644 index 0000000..7fac5b2 --- /dev/null +++ b/i18n/gl.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/gu.po b/i18n/gu.po new file mode 100644 index 0000000..03f38a4 --- /dev/null +++ b/i18n/gu.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Qaidjohar Barbhaya, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Last-Translator: Qaidjohar Barbhaya, 2023\n" +"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Company" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Date" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "User" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..c5723e1 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Sagi Ahiel, 2023 +# Yihya Hugirat , 2023 +# ZVI BLONDER , 2023 +# Lilach Gilliam , 2023 +# Martin Trigaux, 2023 +# NoaFarkash, 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: NoaFarkash, 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "שעות נוכחות" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "חברה" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "תאריך" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "שם לתצוגה" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "עובד" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "הפרש שעות" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "מזהה" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "תפריט" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "המחלקה שלי" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "הצוות שלי" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "אין מידע עדיין" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "דוח נוכחות בדיווח שעות" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "עלות דיווח שעות" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "שעות גיליונות זמנים" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..9ec62d3 --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Milan Tribuson , 2022 +# Đurđica Žarković , 2022 +# Tina Milas, 2022 +# Bole , 2022 +# Karolina Tonković , 2022 +# Martin Trigaux, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Last-Translator: Martin Trigaux, 2022\n" +"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Tvrtka" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Zaposlenik" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Izbornik" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Nema još podataka!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Izvještaj prisustva" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Trošak kontrolnih kartica" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Korisnik" diff --git a/i18n/hr_timesheet_attendance.pot b/i18n/hr_timesheet_attendance.pot new file mode 100644 index 0000000..1fb7c6c --- /dev/null +++ b/i18n/hr_timesheet_attendance.pot @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..05b93a8 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Tamás Dombos, 2023 +# Ákos Nagy , 2023 +# krnkris, 2023 +# Martin Trigaux, 2023 +# Tamás Németh , 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: Tamás Németh , 2023\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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Vállalat" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Dátum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Megjelenített név" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Munkavállaló" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "Azonosító" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menü" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Részlegem" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Csapatom" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Még nincs adat!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Munkaidő-nyilvántartás jelenlét kimutatás" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Munkaidő-nyilvántartás költség" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..8a54b5e --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Biaya Absensi" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Jam Absensi" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Perusahaan" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Bandingkan waktu yang dicatat pada karyawan Anda dengan absensi mereka." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Perbedaan Biaya" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Tanggal" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Karyawan" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Perbedaan Jam" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Departemen Saya" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Tim Saya" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Belum ada data!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Absensi Timesheet" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Laporan Absensi Timesheet" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Biaya Timeshee" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Timesheet / Analisis Absensi" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Jam Timesheet" diff --git a/i18n/is.po b/i18n/is.po new file mode 100644 index 0000000..3ca7c23 --- /dev/null +++ b/i18n/is.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Dags." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nafn" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "Auðkenni" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Notandi" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..3dd400c --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Costo presenza" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Ore di presenza" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Azienda" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "Confronta il tempo registrato dai dipendenti con le presenze." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Differenza costo" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Data" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Dipendente" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Differenza ore" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menù" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Il mio dipartimento" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mio team" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Ancora nessun dato" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Foglio presenze" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Rendiconto presenze con foglio ore " + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Costo foglio ore" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Fogli ore/analisi presenze" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Ore fogli ore" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..16c16d4 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "勤務コスト" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "勤務時間" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "会社" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "従業員が記録した時間と勤怠を比較します。" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "費用差" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "日付" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "従業員" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "差時間" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "メニュー" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "自分の部門" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "自分のチーム" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "まだデータはありません!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "タイムシート勤怠" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "タイムシート勤怠レポート" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "タイムシート費用" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "タイムシート/勤怠分析" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "タイムシート時間" diff --git a/i18n/ka.po b/i18n/ka.po new file mode 100644 index 0000000..556e7eb --- /dev/null +++ b/i18n/ka.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "იდენტიფიკატორი" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/kab.po b/i18n/kab.po new file mode 100644 index 0000000..775411e --- /dev/null +++ b/i18n/kab.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "Asulay" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/km.po b/i18n/km.po new file mode 100644 index 0000000..9bcf6bc --- /dev/null +++ b/i18n/km.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Sengtha Chay , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Sengtha Chay , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "កាលបរិច្ឆេត" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..ea2219d --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "근태 비용" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "근태 시간" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "회사" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "직원이 기록한 시간과 근태 기록을 비교하십시오." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "비용 차액" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "날짜" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "표시명" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "임직원" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "시간 차이" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "메뉴" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "내 부서" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "나의 팀" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "데이터가 아직 없습니다." + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "작업기록 출석" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "작업 기록 출석 보고서" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "작업 기록 비용" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "작업기록 / 출석 분석" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "작업기록 시간" diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..09d593a --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2019-08-26 09:11+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/lo.po b/i18n/lo.po new file mode 100644 index 0000000..8be15cc --- /dev/null +++ b/i18n/lo.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..7fc058d --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux, 2023 +# Anatolij, 2023 +# Jonas Zinkevicius , 2023 +# Linas Versada , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Linas Versada , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Įmonė" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Data" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Darbuotojas" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Meniu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mano komanda" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Jokių duomenų!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Darbo žiniaraščio lankomumo ataskaita" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Darbo laiko žiniaraščio kaštai" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..99c9add --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Armīns Jeltajevs , 2023 +# Arnis Putniņš , 2023 +# Martin Trigaux, 2023 +# ievaputnina , 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: ievaputnina , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Uzņēmums" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datums" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Darbinieks" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Izvēlne" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Mana struktūrvienība" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mana komanda" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Vēl nav datu!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/mk.po b/i18n/mk.po new file mode 100644 index 0000000..8305483 --- /dev/null +++ b/i18n/mk.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..190b0b9 --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Батмөнх Ганбат , 2022 +# Baskhuu Lodoikhuu , 2022 +# baaska sh , 2022 +# Martin Trigaux, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Last-Translator: Martin Trigaux, 2022\n" +"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Компани" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Огноо" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Ажилтан" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Цэс" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Одоогоор мэдээлэл алга!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Цагийн хуудас ирцийн тайлан" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Цагийн хуудсын Өртөг" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Хэрэглэгч" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..3358bb2 --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Marius Stedjan , 2022 +# Martin Trigaux, 2022 +# Lars Aam , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Last-Translator: Lars Aam , 2022\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Firma" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Dato" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Ansatt" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Meny" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Ingen data ennå" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Timelistekostnad" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Bruker" diff --git a/i18n/ne.po b/i18n/ne.po new file mode 100644 index 0000000..83cced0 --- /dev/null +++ b/i18n/ne.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..8567348 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Aanwezigheidskost" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Aanwezigheidsuren" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Vergelijk de tijd die je werknemers hebben geregistreerd met hun " +"aanwezigheid." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Kostenverschil" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Werknemer" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Urenverschil" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Mijn afdeling" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mijn team" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Nog geen gegevens!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Urenstaat aanwezigheid" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Urenstaat aanwezigheid rapport" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Kostprijs urenstaat" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Analyse urenstaten / aanwezigheid" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Uren Urenstaten" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..93b05b5 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Koszt obecności" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Godziny obecności" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Firma" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Porównaj czas zarejestrowany przez Twoich pracowników z ich obecnością." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Różnica kosztów" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Data" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Pracownik" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Różnica w godzinach" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Mój dział" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mój zespół" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Brak danych!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Obecność w arkuszu czasu" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Raport obecności w arkuszu" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Koszt karty pracy" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Godziny arkusza" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..d80665d --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Empresa" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Data" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Funcionário" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Minha Equipa" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Sem dados!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Relatório de Assiduidade do Registo de Horas" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Custo do Registo de Horas " + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..bb3de11 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Custo de presença" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Horas de presença" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Empresa" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Compare o tempo registrado por seus funcionários com o controle de presença " +"deles." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Diferença de custo" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Data" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Funcionário" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Diferença de horas" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Meu departamento" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Minha equipe" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Sem dados ainda." + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Presença com base em planilha de horas" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Relatório de presença com base em planilha de horas" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Custo da planilha de horas" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Análise de presença/planilha de horas" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Horas da planilha" diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..e21d7d3 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Hongu Cosmin , 2022 +# Martin Trigaux, 2022 +# Cozmin Candea , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.5alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:52+0000\n" +"Last-Translator: Cozmin Candea , 2023\n" +"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Costul prezenței" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Ore de prezență" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Companie" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "Compară timpul înregistrat de angajații dvs. cu prezența lor." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Diferența de cost" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Dată" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Angajat" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Diferență de ore" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Meniu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Nu există date încă!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "Suma totală a prezenței" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "Suma totală a diferenței" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "Suma totală a programului de lucru" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Program de lucru / Prezență" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Raportul programului de lucru / prezență" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Cost pontaj" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Ore program de lucru" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "Operator" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..e0587bc --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Стоимость посещения" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Часы посещения" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Компания" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Сравните время, зафиксированное вашими сотрудниками, с их посещаемостью." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Разница в затратах" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Дата" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Сотрудник" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Разница в часах" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Меню" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Мой отдел" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Моя команда" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Пока нет данных!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Табель учета рабочего времени Посещаемость" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Отчет о посещаемости" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Затраты по табелю" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Табели / Анализ посещаемости" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Табели Часы" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..5ac8626 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Spoločnosť" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Dátum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Zamestnanec" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Môj tím" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Zatiaľ žiadne údaje!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Časové rozvrhy dochádzky vyhodnotenie" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Náklady pracovného výkazu" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..ce309a6 --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Boris Kodelja , 2023 +# matjaz k , 2023 +# Martin Trigaux, 2023 +# Matjaz Mozetic , 2023 +# Jasmina Macur , 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 , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Podjetje" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Kader" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Meni" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Moja ekipa" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Podatkov še ni!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Strošek časovnice" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/sq.po b/i18n/sq.po new file mode 100644 index 0000000..6d5cc07 --- /dev/null +++ b/i18n/sq.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Emri i paraqitur" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..930060e --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Milan Bojovic , 2023 +# Martin Trigaux, 2023 +# Dragan Vukosavljevic , 2023 +# コフスタジオ, 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: コフスタジオ, 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Trošak prisustva" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Sati prisustva" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Kompanija" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Uporedite vreme zabeleženo od strane vaših zaposlenih sa njihovim " +"prisustvom." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Razlika u ceni" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Zaposleni" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Razlika u satima" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Meni" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Moje odeljenje" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Moj tim" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Još uvek nema podataka!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Vremenski list prisustva" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Vremenski list izveštaj" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Vremenski list troška" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Vremenski listovi / Analiza prisustva" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Vreme za unos radnih sati" diff --git a/i18n/sr@latin.po b/i18n/sr@latin.po new file mode 100644 index 0000000..a7f6de5 --- /dev/null +++ b/i18n/sr@latin.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +msgid "Sum of Total Timesheet" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_tree +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__user_id +msgid "User" +msgstr "" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..2145154 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Anders Wallenquist , 2023 +# Martin Trigaux, 2023 +# Simon S, 2023 +# Jakob Krabbe , 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: Jakob Krabbe , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Bolag" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Datum" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Anställd" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Meny" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Mitt lag" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Ingen data ännu!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Tidrapporteringskostnad" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..ea841d7 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "ค่าใช้จ่ายในการเข้างาน" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "ชั่วโมงการเข้างาน" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "บริษัท" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "เปรียบเทียบเวลาที่พนักงานของคุณบันทึกไว้กับการเข้างานของพวกเขา" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "ส่วนต่างค่าใช้จ่าย" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "วันที่" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "แสดงชื่อ" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "พนักงาน" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "ส่วนต่างชั่วโมง" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ไอดี" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "เมนู" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "แผนกของฉัน" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "ทีมของฉัน" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "ยังไม่มีข้อมูล!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "การลงเวลาใบบันทึกเวลา" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "รายงานการลงเวลาใบบันทึกเวลา" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "ต้นทุนใบบันทึกเวลา" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "การวิเคราะห์ ใบบันทึกเวลา / การเข้างาน" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "ชั่วโมงใบบันทึกเวลา" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..b41c5d5 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Levent Karakaş , 2023 +# Murat Kaplan , 2023 +# Ediz Duman , 2023 +# Ertuğrul Güreş , 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: Ertuğrul Güreş , 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Katılım Maliyeti" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Katılım Saatleri" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Şirket" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Personeliniz tarafından kaydedilen süreyi katılımlarıyla karşılaştırın." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Maliyet Farkı" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Tarih" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Personel" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Saat Farkı" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menü" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Benim Departmanım" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Ekibim" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Henüz veri yok!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Çalışma Çizelgesi Katılımı" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Çalışma Çizelgesi Devamlılık Raporu" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Çalışma Çizelgesi Maliyeti" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Çalışma Çizelgeleri Saatleri" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..20c6925 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_attendance +# +# Translators: +# Alina Lisnenko , 2023 +# 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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "Вартість відвідування" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "Години відвідування" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Компанія" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" +"Порівняйте час, зафіксований вашими співробітниками, з їх присутністю." + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "Різниця вартості" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Дата" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Співробітник" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "Різниця годин" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Меню" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Мій відділ" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Моя команда" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Ще немає даних!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "Табель відвідуваності" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Звіт табеля відвідуваності" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Вартість по табелю" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "Табелі / Аналіз відвідування" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "Години табелю" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..3f5dfe3 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "Công ty" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "Ngày" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "Nhân viên" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "Menu" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "Bộ phận của tôi" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "Đội của tôi" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "Chưa có dữ liệu nào!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "Bảng báo cáo điểm danh" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "Chi phí theo thời gian" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..fa78ea3 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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: 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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "出勤成本" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "出勤小时数" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "公司" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "将您的员工记录的时间与他们的出勤情况进行比较。" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "成本差异" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "日期" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "员工" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "时间差异" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "ID" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "菜单" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "我的部门" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "我的团队" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "还没有数据耶!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "工时表考勤" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "工时表出勤报告" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "工时表成本" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "工时单 / 出勤分析" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "工时表小时数" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..b97f955 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_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_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__attendance_cost +msgid "Attendance Cost" +msgstr "出勤成本" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_attendance +msgid "Attendance Hours" +msgstr "出勤小時數" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__company_id +msgid "Company" +msgstr "公司" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "Compare the time recorded by your employees with their attendance." +msgstr "將您的員工記錄的時間與他們的出勤情況進行比較。" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__cost_difference +msgid "Cost Difference" +msgstr "成本差異" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__date +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Date" +msgstr "日期" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__employee_id +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Employee" +msgstr "員工" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_difference +msgid "Hours Difference" +msgstr "時數差異" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__id +msgid "ID" +msgstr "識別號" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_ir_ui_menu +msgid "Menu" +msgstr "功能表" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Department" +msgstr "我的部門" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "My Team" +msgstr "我的部屬" + +#. module: hr_timesheet_attendance +#: model_terms:ir.actions.act_window,help:hr_timesheet_attendance.action_hr_timesheet_attendance_report +msgid "No data yet!" +msgstr "暫無資料!" + +#. module: hr_timesheet_attendance +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.hr_timesheet_attendance_report_view_graph +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_pivot +#: model_terms:ir.ui.view,arch_db:hr_timesheet_attendance.view_hr_timesheet_attendance_report_search +msgid "Timesheet Attendance" +msgstr "工時表 出勤" + +#. module: hr_timesheet_attendance +#: model:ir.model,name:hr_timesheet_attendance.model_hr_timesheet_attendance_report +msgid "Timesheet Attendance Report" +msgstr "工時考勤報告" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__timesheets_cost +msgid "Timesheet Cost" +msgstr "工時表成本" + +#. module: hr_timesheet_attendance +#: model:ir.actions.act_window,name:hr_timesheet_attendance.action_hr_timesheet_attendance_report +#: model:ir.ui.menu,name:hr_timesheet_attendance.menu_hr_timesheet_attendance_report +msgid "Timesheets / Attendance Analysis" +msgstr "工時表 / 出勤分析" + +#. module: hr_timesheet_attendance +#: model:ir.model.fields,field_description:hr_timesheet_attendance.field_hr_timesheet_attendance_report__total_timesheet +msgid "Timesheets Hours" +msgstr "工時表小時數" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..03d66e4 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding:utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import ir_ui_menu diff --git a/models/ir_ui_menu.py b/models/ir_ui_menu.py new file mode 100644 index 0000000..7849263 --- /dev/null +++ b/models/ir_ui_menu.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class IrUiMenu(models.Model): + _inherit = 'ir.ui.menu' + + def _load_menus_blacklist(self): + res = super()._load_menus_blacklist() + if not (self.env.user.has_group('hr_timesheet.group_hr_timesheet_user')): + res.append(self.env.ref('hr_timesheet_attendance.menu_hr_timesheet_attendance_report').id) + return res diff --git a/report/__init__.py b/report/__init__.py new file mode 100644 index 0000000..bfe5a13 --- /dev/null +++ b/report/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import hr_timesheet_attendance_report diff --git a/report/hr_timesheet_attendance_report.py b/report/hr_timesheet_attendance_report.py new file mode 100644 index 0000000..86b2fb4 --- /dev/null +++ b/report/hr_timesheet_attendance_report.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, fields, models, tools + + +class TimesheetAttendance(models.Model): + _name = 'hr.timesheet.attendance.report' + _auto = False + _description = 'Timesheet Attendance Report' + + employee_id = fields.Many2one('hr.employee', readonly=True) + date = fields.Date(readonly=True) + total_timesheet = fields.Float("Timesheets Hours", readonly=True) + total_attendance = fields.Float("Attendance Hours", readonly=True) + total_difference = fields.Float("Hours Difference", readonly=True) + timesheets_cost = fields.Float("Timesheet Cost", readonly=True) + attendance_cost = fields.Float("Attendance Cost", readonly=True) + cost_difference = fields.Float("Cost Difference", readonly=True) + company_id = fields.Many2one('res.company', string='Company', readonly=True) + + def init(self): + tools.drop_view_if_exists(self.env.cr, self._table) + self._cr.execute("""CREATE OR REPLACE VIEW %s AS ( + SELECT + max(id) AS id, + t.employee_id, + t.date, + t.company_id, + coalesce(sum(t.attendance), 0) AS total_attendance, + coalesce(sum(t.timesheet), 0) AS total_timesheet, + coalesce(sum(t.attendance), 0) - coalesce(sum(t.timesheet), 0) as total_difference, + NULLIF(sum(t.timesheet) * t.emp_cost, 0) as timesheets_cost, + NULLIF(sum(t.attendance) * t.emp_cost, 0) as attendance_cost, + NULLIF((coalesce(sum(t.attendance), 0) - coalesce(sum(t.timesheet), 0)) * t.emp_cost, 0) as cost_difference + FROM ( + SELECT + -hr_attendance.id AS id, + hr_employee.hourly_cost AS emp_cost, + hr_attendance.employee_id AS employee_id, + hr_attendance.worked_hours AS attendance, + NULL AS timesheet, + hr_attendance.check_in::date AS date, + hr_employee.company_id as company_id + FROM hr_attendance + LEFT JOIN hr_employee ON hr_employee.id = hr_attendance.employee_id + UNION ALL + SELECT + ts.id AS id, + hr_employee.hourly_cost AS emp_cost, + ts.employee_id AS employee_id, + NULL AS attendance, + ts.unit_amount AS timesheet, + ts.date AS date, + ts.company_id AS company_id + FROM account_analytic_line AS ts + LEFT JOIN hr_employee ON hr_employee.id = ts.employee_id + WHERE ts.project_id IS NOT NULL + ) AS t + GROUP BY t.employee_id, t.date, t.company_id, t.emp_cost + ORDER BY t.date + ) + """ % self._table) + + @api.model + def read_group(self, domain, fields, groupby, offset=0, limit=None, orderby=False, lazy=True): + if not orderby and groupby: + orderby_list = [groupby] if isinstance(groupby, str) else groupby + orderby_list = [field.split(':')[0] for field in orderby_list] + orderby = ','.join([f"{field} desc" if field == 'date' else field for field in orderby_list]) + return super().read_group(domain, fields, groupby, offset=offset, limit=limit, orderby=orderby, lazy=lazy) diff --git a/report/hr_timesheet_attendance_report_view.xml b/report/hr_timesheet_attendance_report_view.xml new file mode 100644 index 0000000..68d7977 --- /dev/null +++ b/report/hr_timesheet_attendance_report_view.xml @@ -0,0 +1,79 @@ + + + + + Search for HR timesheet attendance report + hr.timesheet.attendance.report + + + + + + + + + + + + + + HR timesheet attendance report: Pivot + hr.timesheet.attendance.report + + + + + + + + + + + + + + + hr.timesheet.attendance.report.view.graph + hr.timesheet.attendance.report + + + + + + + + + + Timesheets / Attendance Analysis + hr.timesheet.attendance.report + graph,pivot + + {} + +

+ No data yet! +

+ Compare the time recorded by your employees with their attendance. +

+
+
+ + + + pivot + + + + + + graph + + + + + +
+
diff --git a/security/hr_timesheet_attendance_report_security.xml b/security/hr_timesheet_attendance_report_security.xml new file mode 100644 index 0000000..41b6236 --- /dev/null +++ b/security/hr_timesheet_attendance_report_security.xml @@ -0,0 +1,29 @@ + + + + Restricted Timesheet attendance Record: multi-company + + ['|', ('company_id', 'in', company_ids), ('company_id', '=', False)] + + + + Timesheet attendance Report: User + + [('employee_id', '=', user.employee_id.id)] + + + + + Timesheet attendance Report: Approver + + [(1, '=', 1)] + + + + + Timesheet attendance Report: Administrator + + [(1, '=', 1)] + + + diff --git a/security/ir.model.access.csv b/security/ir.model.access.csv new file mode 100644 index 0000000..9cc5208 --- /dev/null +++ b/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_hr_timesheet_attendance_report,access_hr_timesheet_attendance_report,model_hr_timesheet_attendance_report,hr_timesheet.group_hr_timesheet_user,1,0,0,0 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..d306e07 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import test_timesheet_attendance diff --git a/tests/test_timesheet_attendance.py b/tests/test_timesheet_attendance.py new file mode 100644 index 0000000..88c7375 --- /dev/null +++ b/tests/test_timesheet_attendance.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from datetime import datetime + +from odoo.tests import tagged +from odoo.addons.hr_timesheet.tests.test_timesheet import TestCommonTimesheet + +@tagged('post_install', '-at_install') +class TestTimesheetAttendance(TestCommonTimesheet): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.env['hr.attendance'].create({ + 'employee_id': cls.empl_employee.id, + 'check_in': datetime(2022, 2, 9, 8, 0), # Wednesday + 'check_out': datetime(2022, 2, 9, 16, 0), + }) + + def test_timesheet_attendance_report(self): + self.env['account.analytic.line'].with_user(self.user_employee).create({ + 'name': 'Test timesheet 1', + 'project_id': self.project_customer.id, + 'unit_amount': 6.0, + 'date': datetime(2022, 2, 9), + }) + total_timesheet, total_attendance = self.env['hr.timesheet.attendance.report']._read_group( + [('employee_id', '=', self.empl_employee.id), + ('date', '>=', datetime(2022, 2, 9, 8, 0)), ('date', '<=', datetime(2022, 2, 9, 16, 0))], + aggregates=['total_timesheet:sum', 'total_attendance:sum'], + )[0] + self.assertEqual(total_timesheet, 6.0, "Total timesheet in report should be 4.0") + self.assertEqual(total_attendance, 7.0, "Total attendance in report should be 8.0") + self.assertEqual(total_attendance - total_timesheet, 1) diff --git a/upgrades/1.1/pre-migrate.py b/upgrades/1.1/pre-migrate.py new file mode 100644 index 0000000..4612246 --- /dev/null +++ b/upgrades/1.1/pre-migrate.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +def migrate(cr, version): + cr.execute(""" + UPDATE ir_rule r + SET domain_force = '[(1, "=", 1)]' + FROM ir_model_data d + WHERE d.res_id = r.id + AND d.model = 'ir.rule' + AND d.module = 'hr_timesheet_attendance' + AND d.name = 'hr_timesheet_attendance_report_rule_approver' + """)