Merge pull request #45119 from frappe/mergify/bp/version-14-hotfix/pr-45118

fix(Project): make status in confirmation dialog translatable (backport #45118)
This commit is contained in:
ruthra kumar
2025-01-07 10:12:04 +05:30
committed by GitHub

View File

@@ -190,7 +190,7 @@ frappe.ui.form.on("Project", {
},
set_status: function (frm, status) {
frappe.confirm(__("Set Project and all Tasks to status {0}?", [status.bold()]), () => {
frappe.confirm(__("Set Project and all Tasks to status {0}?", [__(status).bold()]), () => {
frappe
.xcall("erpnext.projects.doctype.project.project.set_project_status", {
project: frm.doc.name,