add i18n support adn English and Japanese message

This commit is contained in:
Hiroyasu Nishiyama 2022-06-21 22:39:22 +09:00
parent 10835968fb
commit 42ecf54df6
3 changed files with 5 additions and 3 deletions

View File

@ -1158,7 +1158,8 @@
"tourGuide": { "tourGuide": {
"takeATour": "Take a tour", "takeATour": "Take a tour",
"start": "Start", "start": "Start",
"next": "Next" "next": "Next",
"tours": "Tours"
}, },
"diagnostics": { "diagnostics": {
"title": "System Info" "title": "System Info"

View File

@ -1157,7 +1157,8 @@
"tourGuide": { "tourGuide": {
"takeATour": "ツアーを開始", "takeATour": "ツアーを開始",
"start": "開始", "start": "開始",
"next": "次へ" "next": "次へ",
"tours": "ツアー"
}, },
"languages": { "languages": {
"de": "ドイツ語", "de": "ドイツ語",

View File

@ -218,7 +218,7 @@ RED.sidebar.help = (function() {
nodeHelp, nodeHelp,
{ {
id: "tours", id: "tours",
label: "Tours", label: RED._("tourGuide.tours"),
children: tours children: tours
}, },
]; ];