Merge pull request #38813 from devdiogenes/fix-translate-docname-share-dialog

fix: Make docname translatable in share dialog
This commit is contained in:
Ejaaz Khan 2026-04-23 00:23:08 +05:30 committed by GitHub
commit 1cf89c9bc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,7 +53,7 @@ frappe.ui.form.Share = class Share {
show() {
var me = this;
var d = new frappe.ui.Dialog({
title: __("Share {0} with", [this.frm.doc.name]),
title: __("Share {0} with", [__(this.frm.doc.name)]),
});
this.dialog = d;