diff --git a/ayanova/src/views/ay-evaluate.vue b/ayanova/src/views/ay-evaluate.vue index f412eb3e..01d5f2dd 100644 --- a/ayanova/src/views/ay-evaluate.vue +++ b/ayanova/src/views/ay-evaluate.vue @@ -4,7 +4,17 @@ - + +
{{ $ay.t("Welcome") }}
+
+ + {{ + $ay.t("EvaluationGuide") + }} + + +
{{ $ay.t("GenerateSampleData") }}
+ Evaluation guide in manual Generate sample data Purchase licenses Contact support
@@ -63,7 +73,14 @@ export default { }; }, - methods: {} + methods: { + helpEvaluate() { + window.$gz.eventBus.$emit("menu-click", { + key: "app:help", + data: "ay-evaluate" + }); + } + } }; ///////////////////////////// @@ -122,7 +139,11 @@ function initForm(vm) { // Ensures UI translated text is available // function fetchTranslatedText(vm) { - return window.$gz.translation.cacheTranslations(["Welcome"]); + return window.$gz.translation.cacheTranslations([ + "Welcome", + "GenerateSampleData", + "EvaluationGuide" + ]); } // //////////////////////