0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[ServiceNow] 日本語化したメッセージを表示させる

Posted at

きっかけ

OOTBのサービスカタログをカスタマイズして利用しようとしたら、メッセージが日本語表示されなかった。
スクリーンショット 2020-12-01 22.24.03.png

原因

モバイルおよびサービスポータルのクライアントスクリプトで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);
}

スクリーンショット 2020-12-01 22.23.01.png

参考リンク

getMessage() is translation in does not work in Service Portal or Mobile.

捕捉

日本語のメッセージは システムローカライズ > メッセージ の中にあります。
スクリーンショット 2020-12-01 22.27.27.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?