mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-24 23:49:19 +00:00
Fix translate company.js
This commit is contained in:
@@ -22,7 +22,8 @@ cur_frm.cscript.has_special_chars = function(t) {
|
|||||||
|
|
||||||
cur_frm.cscript.company_name = function(doc){
|
cur_frm.cscript.company_name = function(doc){
|
||||||
if(doc.company_name && cur_frm.cscript.has_special_chars(doc.company_name)){
|
if(doc.company_name && cur_frm.cscript.has_special_chars(doc.company_name)){
|
||||||
msgprint("<font color=red>Special Characters <b>! @ # $ % ^ * + = - [ ] ' ; , / { } | : < > ?</b> are not allowed for</font>\nCompany Name <b>" + doc.company_name +"</b>")
|
msgprint(("<font color=red>"+wn._("Special Characters")+" <b>! @ # $ % ^ * + = - [ ] ' ; , / { } | : < > ?</b> "+
|
||||||
|
wn._("are not allowed for ")+"</font>\n"+wn._("Company Name")+" <b> "+ doc.company_name +"</b>"))
|
||||||
doc.company_name = '';
|
doc.company_name = '';
|
||||||
refresh_field('company_name');
|
refresh_field('company_name');
|
||||||
}
|
}
|
||||||
@@ -30,7 +31,8 @@ cur_frm.cscript.company_name = function(doc){
|
|||||||
|
|
||||||
cur_frm.cscript.abbr = function(doc){
|
cur_frm.cscript.abbr = function(doc){
|
||||||
if(doc.abbr && cur_frm.cscript.has_special_chars(doc.abbr)){
|
if(doc.abbr && cur_frm.cscript.has_special_chars(doc.abbr)){
|
||||||
msgprint("<font color=red>Special Characters <b>! @ # $ % ^ * + = - [ ] ' ; , / { } | : < > ?</b> are not allowed for</font>\nAbbr <b>" + doc.abbr +"</b>")
|
msgprint("<font color=red>"wn._("Special Characters ")+"<b>! @ # $ % ^ * + = - [ ] ' ; , / { } | : < > ?</b>" +
|
||||||
|
wn._("are not allowed for")+ "</font>\nAbbr <b>" + doc.abbr +"</b>")
|
||||||
doc.abbr = '';
|
doc.abbr = '';
|
||||||
refresh_field('abbr');
|
refresh_field('abbr');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user