Skip to content

Commit

Permalink
fix(Leave Balance): Add context to translation for "Left" (Employee) …
Browse files Browse the repository at this point in the history
…(backport #1683) (#1685)

* fix(Leave Balance): Add context to translation for "Left" (Employee) (#1683)

(cherry picked from commit 97f393e)

# Conflicts:
#	hrms/hr/report/employee_leave_balance/employee_leave_balance.js

* chore: fix conflicts

---------

Co-authored-by: Corentin Flr <10946971+cogk@users.noreply.github.com>
Co-authored-by: Rucha Mahabal <ruchamahabal2@gmail.com>
  • Loading branch information
3 people authored Apr 19, 2024
1 parent 2bc8f46 commit 7bedf5f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ frappe.query_reports["Employee Leave Balance"] = {
fieldtype: "Select",
options: [
"",
{ "value": "Active", "label": __("Active") },
{ "value": "Inactive", "label": __("Inactive") },
{ "value": "Suspended", "label": __("Suspended") },
{ "value": "Left", "label": __("Left") },
{ value: "Active", label: __("Active") },
{ value: "Inactive", label: __("Inactive") },
{ value: "Suspended", label: __("Suspended") },
{ value: "Left", label: __("Left", null, "Employee") },
],
default: "Active",
},
Expand Down

0 comments on commit 7bedf5f

Please sign in to comment.