[IMP]allow_negative_leave_and_allocation:change label and add translation

This commit is contained in:
2025-01-02 13:15:26 +01:00
committed by Stéphan Sainléger
parent c82a96fc18
commit 2836fc8e2f
5 changed files with 127 additions and 7 deletions

View File

@@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * allow_negative_leave_and_allocation
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-01-02 12:11+0000\n"
"PO-Revision-Date: 2025-01-02 12:11+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: allow_negative_leave_and_allocation
#: model:ir.model.fields,field_description:allow_negative_leave_and_allocation.field_hr_leave_type__allows_negative
msgid "Allow Negative Leaves"
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model_terms:ir.ui.view,arch_db:allow_negative_leave_and_allocation.hr_leave_type_negative_leave
msgid "Allow negative"
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model.fields,help:allow_negative_leave_and_allocation.field_hr_leave_type__allows_negative
msgid ""
"If checked, users request can exceed the allocated days and balance can go "
"in negative."
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model.constraint,message:allow_negative_leave_and_allocation.constraint_hr_leave_allocation_duration_check
msgid "The duration must be greater than 0."
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model.constraint,message:allow_negative_leave_and_allocation.constraint_hr_leave_allocation_type_value
msgid ""
"The employee, department, company or employee category of this request is "
"missing. Please make sure that your user login is linked to an employee."
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model,name:allow_negative_leave_and_allocation.model_hr_leave
msgid "Time Off"
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model,name:allow_negative_leave_and_allocation.model_hr_leave_allocation
msgid "Time Off Allocation"
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model,name:allow_negative_leave_and_allocation.model_hr_leave_type
msgid "Time Off Type"
msgstr ""

View File

@@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * allow_negative_leave_and_allocation
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-01-02 12:11+0000\n"
"PO-Revision-Date: 2025-01-02 12:11+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: allow_negative_leave_and_allocation
#: model:ir.model.fields,field_description:allow_negative_leave_and_allocation.field_hr_leave_type__allows_negative
msgid "Allow Negative Leaves"
msgstr "Autoriser les congés négatifs"
#. module: allow_negative_leave_and_allocation
#: model_terms:ir.ui.view,arch_db:allow_negative_leave_and_allocation.hr_leave_type_negative_leave
msgid "Allow negative"
msgstr "Autoriser les congés négatifs"
#. module: allow_negative_leave_and_allocation
#: model:ir.model.fields,help:allow_negative_leave_and_allocation.field_hr_leave_type__allows_negative
msgid ""
"If checked, users request can exceed the allocated days and balance can go "
"in negative."
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model.constraint,message:allow_negative_leave_and_allocation.constraint_hr_leave_allocation_duration_check
msgid "The duration must be greater than 0."
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model.constraint,message:allow_negative_leave_and_allocation.constraint_hr_leave_allocation_type_value
msgid ""
"The employee, department, company or employee category of this request is "
"missing. Please make sure that your user login is linked to an employee."
msgstr ""
#. module: allow_negative_leave_and_allocation
#: model:ir.model,name:allow_negative_leave_and_allocation.model_hr_leave
msgid "Time Off"
msgstr "Congés"
#. module: allow_negative_leave_and_allocation
#: model:ir.model,name:allow_negative_leave_and_allocation.model_hr_leave_allocation
msgid "Time Off Allocation"
msgstr "Allocation de congés"
#. module: allow_negative_leave_and_allocation
#: model:ir.model,name:allow_negative_leave_and_allocation.model_hr_leave_type
msgid "Time Off Type"
msgstr "Type de congés"

View File

@@ -9,7 +9,7 @@ class HolidaysType(models.Model):
_inherit = "hr.leave.type"
# negative time off
allows_negative = fields.Boolean(string='Allow Negative Cap',
allows_negative = fields.Boolean(string='Allow Negative Leaves',
help="If checked, users request can exceed the allocated days and balance can go in negative.")
@api.depends('requires_allocation')

View File

@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="hr_leave_type_negative_cap" model="ir.ui.view">
<field name="name">hr.leave.type.negative.cap</field>
<record id="hr_leave_type_negative_leave" model="ir.ui.view">
<field name="name">hr.leave.type.negative.leave</field>
<field name="model">hr.leave.type</field>
<field name="inherit_id" ref="hr_holidays.edit_holiday_status_form" />
<field name="arch" type="xml">
<xpath expr="//group[@name='allocation_validation']" position="inside">
<group>
<group name="negative_cap" id="negative_cap"
string="Negative Cap"
<group name="negative_leave" id="negative_leave"
string="Allow negative"
attrs="{'invisible':[('requires_allocation', '=', 'no')]}"
>
<field name="allows_negative" />

View File

@@ -1,6 +1,6 @@
<odoo>
<record id="hr_leave_view_negative_cap" model="ir.ui.view">
<field name="name">hr.leave.view.negative.cap</field>
<record id="hr_leave_view_negative_leave" model="ir.ui.view">
<field name="name">hr.leave.view.negative.leave</field>
<field name="model">hr.leave</field>
<field name="inherit_id" ref="hr_holidays.hr_leave_view_form" />
<field name="arch" type="xml">