[ServiceNow] 일본어화된 메시지 표시
2808 단어 ServicePortal일본어화ServiceNow
계기
OOTB의 서비스 카탈로그를 커스터마이즈하고 이용하려고 하면, 메시지가 일본어 표시되지 않았다.
원인
모바일 및 서비스 포털 클라이언트 스크립트에서 getMessage를 동기적으로 처리할 수 없습니다.
validationOnSubmit.js if (endDate < startDate) {
g_form.addErrorMessage(getMessage('Please ensure that the End date/time is after Start date/time'));
return false;
}
대응 방법
콜백을 사용합니다.
validationOnSubmit.js if (endDate < startDate) {
getMessage('Please ensure that the End date/time is after Start date/time', showError);
return false;
}
(中略)
function showError(msg){
g_form.addErrorMessage(msg);
}
참고 링크
getMessage() is translation in does not work in Service Portal or Mobile.
포착
일본어 메시지는 システムローカライズ > メッセージ
에 있습니다.
Reference
이 문제에 관하여([ServiceNow] 일본어화된 메시지 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ngm_777/items/62214c67a7505847c608
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
if (endDate < startDate) {
g_form.addErrorMessage(getMessage('Please ensure that the End date/time is after Start date/time'));
return false;
}
콜백을 사용합니다.
validationOnSubmit.js
if (endDate < startDate) {
getMessage('Please ensure that the End date/time is after Start date/time', showError);
return false;
}
(中略)
function showError(msg){
g_form.addErrorMessage(msg);
}
참고 링크
getMessage() is translation in does not work in Service Portal or Mobile.
포착
일본어 메시지는
システムローカライズ > メッセージ
에 있습니다.Reference
이 문제에 관하여([ServiceNow] 일본어화된 메시지 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ngm_777/items/62214c67a7505847c608텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)