From de5b30997cc38790fd1961cb9cc74b1a04d6b7bb Mon Sep 17 00:00:00 2001 From: Sebastian Holtkamp Date: Thu, 21 Nov 2024 13:03:04 +0100 Subject: [PATCH] Update bundle --- src/main/js/bundles/dn_intro/manifest.json | 8 +++++--- src/main/js/bundles/dn_intro/nls/bundle.js | 5 ++++- src/main/js/bundles/dn_intro/nls/de/bundle.js | 5 ++++- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/src/main/js/bundles/dn_intro/manifest.json b/src/main/js/bundles/dn_intro/manifest.json index 5b676a0..5724457 100644 --- a/src/main/js/bundles/dn_intro/manifest.json +++ b/src/main/js/bundles/dn_intro/manifest.json @@ -14,15 +14,17 @@ }, "components": [ { - "name": "TocTourTool", + "name": "TourClickTool", "impl": "ct/tools/Tool", "provides": [ "ct.tools.Tool" ], "propertiesConstructor": true, "properties": { - "id": "tocTourTool", - "title": "Start driver.js tour for TOC", + "id": "tourClickTool", + "title": "Start driver.js tour", + "tooltip": "${tool.tooltip}", + "iconClass": "icon-help", "toolRole": "toolset", "clickHandler": "startTour" }, diff --git a/src/main/js/bundles/dn_intro/nls/bundle.js b/src/main/js/bundles/dn_intro/nls/bundle.js index 3a2f021..bf1bb66 100644 --- a/src/main/js/bundles/dn_intro/nls/bundle.js +++ b/src/main/js/bundles/dn_intro/nls/bundle.js @@ -16,7 +16,10 @@ export default { root: { bundleName: "DN Intro", - bundleDescription: "Can be used to create an introductory tour for apps" + bundleDescription: "Can be used to create an introductory tour for apps", + tool: { + tooltip: "Start Tour" + } }, de: true }; diff --git a/src/main/js/bundles/dn_intro/nls/de/bundle.js b/src/main/js/bundles/dn_intro/nls/de/bundle.js index 6dde10b..992888e 100644 --- a/src/main/js/bundles/dn_intro/nls/de/bundle.js +++ b/src/main/js/bundles/dn_intro/nls/de/bundle.js @@ -15,5 +15,8 @@ */ export default { bundleName: "DN Intro", - bundleDescription: "Erlaubt die Konfiguration von Einführungstouren für eine App." + bundleDescription: "Erlaubt die Konfiguration von Einführungstouren für eine App.", + tool: { + tooltip: "Einführungstour starten" + } };