|
|
@ -23,7 +23,7 @@ frappe.ui.form.on('App Labels', { |
|
|
|
}, |
|
|
|
validate: function (frm) { |
|
|
|
if (frm.doc.english_label) { |
|
|
|
if (frm.doc.english_label.length > 50) { |
|
|
|
if (frm.doc.english_label.length > 100) { |
|
|
|
frappe.msgprint("<b>English Label :</b> Only <b> 50 </b> characters allowed") |
|
|
|
validated = false; |
|
|
|
} |
|
|
@ -50,7 +50,7 @@ frappe.ui.form.on('App Labels', { |
|
|
|
} |
|
|
|
|
|
|
|
if (frm.doc.page_name) { |
|
|
|
if (frm.doc.page_name.length > 50) { |
|
|
|
if (frm.doc.page_name.length > 100) { |
|
|
|
frappe.msgprint("<b>Page Name :</b> Only <b> 50 </b> characters allowed") |
|
|
|
validated = false; |
|
|
|
} |
|
|
@ -77,7 +77,7 @@ frappe.ui.form.on('App Labels', { |
|
|
|
} |
|
|
|
|
|
|
|
if (frm.doc.label) { |
|
|
|
if (frm.doc.label.length > 50) { |
|
|
|
if (frm.doc.label.length > 100) { |
|
|
|
frappe.msgprint("<b>Translated Label :</b> Only <b> 50 </b> characters allowed") |
|
|
|
validated = false; |
|
|
|
} |
|
|
|