Начальное наполнение
This commit is contained in:
parent
884e948a38
commit
0efa0aed30
3
__init__.py
Normal file
3
__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
21
__manifest__.py
Normal file
21
__manifest__.py
Normal file
@ -0,0 +1,21 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Employee Hourly Wage',
|
||||
'version': '1.0',
|
||||
'category': 'Services/Employee Hourly Cost',
|
||||
'summary': 'Employee Hourly Wage',
|
||||
'description': """
|
||||
This module assigns an hourly wage to employees to be used by other modules.
|
||||
============================================================================
|
||||
|
||||
""",
|
||||
'depends': ['hr'],
|
||||
'data': [
|
||||
'views/hr_employee_views.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/hr_hourly_cost_demo.xml',
|
||||
],
|
||||
'license': 'LGPL-3',
|
||||
}
|
83
data/hr_hourly_cost_demo.xml
Normal file
83
data/hr_hourly_cost_demo.xml
Normal file
@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- Employee -->
|
||||
<record id="hr.employee_admin" model="hr.employee">
|
||||
<field name="hourly_cost">100</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_vad" model="hr.employee">
|
||||
<field name="hourly_cost">35</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_jth" model="hr.employee">
|
||||
<field name="hourly_cost">25</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_niv" model="hr.employee">
|
||||
<field name="hourly_cost">45</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_jod" model="hr.employee">
|
||||
<field name="hourly_cost">55</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_jve" model="hr.employee">
|
||||
<field name="hourly_cost">15</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_fme" model="hr.employee">
|
||||
<field name="hourly_cost">45</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_chs" model="hr.employee">
|
||||
<field name="hourly_cost">20</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_ngh" model="hr.employee">
|
||||
<field name="hourly_cost">40</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_jgo" model="hr.employee">
|
||||
<field name="hourly_cost">45</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_lur" model="hr.employee">
|
||||
<field name="hourly_cost">35</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_jep" model="hr.employee">
|
||||
<field name="hourly_cost">25</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_jog" model="hr.employee">
|
||||
<field name="hourly_cost">40</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_fpi" model="hr.employee">
|
||||
<field name="hourly_cost">50</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_mit" model="hr.employee">
|
||||
<field name="hourly_cost">15</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_hne" model="hr.employee">
|
||||
<field name="hourly_cost">10</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_qdp" model="hr.employee">
|
||||
<field name="hourly_cost">75</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_stw" model="hr.employee">
|
||||
<field name="hourly_cost">65</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_al" model="hr.employee">
|
||||
<field name="hourly_cost">50</field>
|
||||
</record>
|
||||
|
||||
<record id="hr.employee_han" model="hr.employee">
|
||||
<field name="hourly_cost">35</field>
|
||||
</record>
|
||||
</odoo>
|
30
i18n/ar.po
Normal file
30
i18n/ar.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "الموظف"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "التكلفة بالساعة"
|
30
i18n/bg.po
Normal file
30
i18n/bg.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# aleksandar ivanov, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: aleksandar ivanov, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Служител"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
31
i18n/ca.po
Normal file
31
i18n/ca.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Óscar Fonseca <tecnico@pyming.com>, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Empleat"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Cost horari"
|
31
i18n/cs.po
Normal file
31
i18n/cs.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Marek Záda, 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zaměstnanec"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Hodinová sazba"
|
30
i18n/da.po
Normal file
30
i18n/da.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Medarbejder"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
31
i18n/de.po
Normal file
31
i18n/de.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Mitarbeiter"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Stündliche Kosten"
|
31
i18n/es.po
Normal file
31
i18n/es.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Empleado"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Coste por hora"
|
31
i18n/es_419.po
Normal file
31
i18n/es_419.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Empleado"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Costo por hora"
|
33
i18n/es_MX.po
Normal file
33
i18n/es_MX.po
Normal file
@ -0,0 +1,33 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Iran Villalobos López, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-29 09:39+0000\n"
|
||||
"PO-Revision-Date: 2023-03-23 10:39+0000\n"
|
||||
"Last-Translator: Iran Villalobos López, 2023\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Empleado"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Costo por hora"
|
31
i18n/et.po
Normal file
31
i18n/et.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Anna, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Eneli Õigus <enelioigus@gmail.com>, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Töötaja"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Tunnihind"
|
30
i18n/fa.po
Normal file
30
i18n/fa.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "کارمند"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
31
i18n/fi.po
Normal file
31
i18n/fi.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Työntekijä"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Tuntihinta"
|
31
i18n/fr.po
Normal file
31
i18n/fr.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Employé"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Coût horaire"
|
31
i18n/he.po
Normal file
31
i18n/he.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Yihya Hugirat <hugirat@gmail.com>, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "עובד"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "עלות שעתית"
|
26
i18n/hr_hourly_cost.pot
Normal file
26
i18n/hr_hourly_cost.pot
Normal file
@ -0,0 +1,26 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
30
i18n/hu.po
Normal file
30
i18n/hu.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Munkavállaló"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
31
i18n/id.po
Normal file
31
i18n/id.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Karyawan"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Ongkos Per Jam"
|
30
i18n/it.po
Normal file
30
i18n/it.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Dipendente"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Costo orario"
|
30
i18n/ja.po
Normal file
30
i18n/ja.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "従業員"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "時間コスト"
|
31
i18n/ko.po
Normal file
31
i18n/ko.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "직원"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "시간당 비용"
|
30
i18n/lt.po
Normal file
30
i18n/lt.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Darbuotojas"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
30
i18n/lv.po
Normal file
30
i18n/lv.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Arnis Putniņš <arnis@allegro.lv>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Darbinieks"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
30
i18n/nb.po
Normal file
30
i18n/nb.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-29 09:39+0000\n"
|
||||
"PO-Revision-Date: 2023-03-23 10:39+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Ansatt"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
30
i18n/nl.po
Normal file
30
i18n/nl.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Werknemer"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Uurkosten"
|
30
i18n/pl.po
Normal file
30
i18n/pl.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Pracownik"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Koszt godzinowy"
|
30
i18n/pt.po
Normal file
30
i18n/pt.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Funcionário"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr ""
|
31
i18n/pt_BR.po
Normal file
31
i18n/pt_BR.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Funcionário"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Custo por hora"
|
28
i18n/ru.po
Normal file
28
i18n/ru.po
Normal file
@ -0,0 +1,28 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
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: 2024-01-30 15:14+0400\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Сотрудник"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Почасовая стоимость"
|
31
i18n/sk.po
Normal file
31
i18n/sk.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Dávid Kováč, 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Dávid Kováč, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zamestnanec"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Hodinová sadzba"
|
31
i18n/sl.po
Normal file
31
i18n/sl.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Katja Deržič, 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Katja Deržič, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Kader"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Urna postavka"
|
31
i18n/sr.po
Normal file
31
i18n/sr.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic, 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Milan Bojovic, 2023\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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Zaposleni"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Cena po satu"
|
31
i18n/sv.po
Normal file
31
i18n/sv.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Lasse L, 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Lasse L, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Anställd"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Kostnad per timme"
|
30
i18n/th.po
Normal file
30
i18n/th.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "พนักงาน"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "ค่าใช้จ่ายรายชั่วโมง"
|
31
i18n/tr.po
Normal file
31
i18n/tr.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Personel"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Saatlik Maliyet"
|
30
i18n/uk.po
Normal file
30
i18n/uk.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Співробітник"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Вартість години"
|
30
i18n/vi.po
Normal file
30
i18n/vi.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "Nhân viên"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "Chi phí theo giờ"
|
31
i18n/zh_CN.po
Normal file
31
i18n/zh_CN.po
Normal file
@ -0,0 +1,31 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# Translators:
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-12-05 16:41+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "员工"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "每小时成本"
|
30
i18n/zh_TW.po
Normal file
30
i18n/zh_TW.po
Normal file
@ -0,0 +1,30 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_hourly_cost
|
||||
#
|
||||
# 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-12-05 16:41+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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_hourly_cost
|
||||
#: model:ir.model,name:hr_hourly_cost.model_hr_employee
|
||||
msgid "Employee"
|
||||
msgstr "員工"
|
||||
|
||||
#. module: hr_hourly_cost
|
||||
#: model:ir.model.fields,field_description:hr_hourly_cost.field_hr_employee__hourly_cost
|
||||
msgid "Hourly Cost"
|
||||
msgstr "每小時成本"
|
3
models/__init__.py
Normal file
3
models/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import hr_employee
|
10
models/hr_employee.py
Normal file
10
models/hr_employee.py
Normal file
@ -0,0 +1,10 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class HrEmployee(models.Model):
|
||||
_inherit = 'hr.employee'
|
||||
|
||||
hourly_cost = fields.Monetary('Hourly Cost', currency_field='currency_id',
|
||||
groups="hr.group_hr_user", default=0.0)
|
21
views/hr_employee_views.xml
Normal file
21
views/hr_employee_views.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="view_employee_form" model="ir.ui.view">
|
||||
<field name="name">view.employee.form.inherit.hr.employee.hourly.wage</field>
|
||||
<field name="model">hr.employee</field>
|
||||
<field name="inherit_id" ref="hr.view_employee_form"/>
|
||||
<field name="priority" eval="40"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="application_group" position="attributes">
|
||||
<attribute name="invisible">0</attribute>
|
||||
</group>
|
||||
<group name="application_group" position="inside">
|
||||
<label for="hourly_cost"/>
|
||||
<div name="hourly_cost">
|
||||
<field name="hourly_cost" class="oe_inline"/>
|
||||
<field name="currency_id" invisible="1"/>
|
||||
</div>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user