diff --git a/launcher/src/components/UI/edit-page/components/changes/ChangesBox.vue b/launcher/src/components/UI/edit-page/components/changes/ChangesBox.vue index 1e0cdae94..9976d32be 100644 --- a/launcher/src/components/UI/edit-page/components/changes/ChangesBox.vue +++ b/launcher/src/components/UI/edit-page/components/changes/ChangesBox.vue @@ -11,7 +11,7 @@ class="w-full h-10 border border-gray-500 shadow-md shadow-black p-1 rounded-md grid grid-cols-6 hover:border-gray-300 cursor-pointer" :class="contentBgColor(item)" @click="removeChange(item)" - @mouseenter="footerStore.cursorLocation = `Click here to cancel this change`" + @mouseenter="footerStore.cursorLocation = `${clickToCancel}`" >
icon @@ -38,6 +38,12 @@ import { useFooter } from "@/store/theFooter"; import { useNodeManage } from "@/store/nodeManage"; import { computed } from "vue"; +import i18n from "@/includes/i18n"; + +const t = i18n.global.t; + +const clickToCancel = t("changesBox.clickToCancel"); + const footerStore = useFooter(); const emit = defineEmits(["remove-change"]); diff --git a/launcher/src/components/UI/edit-page/components/drawer/DrawerBox.vue b/launcher/src/components/UI/edit-page/components/drawer/DrawerBox.vue index 10a743ff5..1b67d9a7e 100644 --- a/launcher/src/components/UI/edit-page/components/drawer/DrawerBox.vue +++ b/launcher/src/components/UI/edit-page/components/drawer/DrawerBox.vue @@ -17,7 +17,7 @@ import { useServices } from '@/store/services'; draggable="true" @dragstart="dragStart($event, service)" @dblclick="addServices(service)" - @mouseenter="footerStore.cursorLocation = `${service.name} service`" + @mouseenter="footerStore.cursorLocation = `${service.name} ${serv}`" > Client Icon

@@ -41,6 +41,12 @@ import { computed, ref } from 'vue'; import { computed } from "vue"; import { useFooter } from "@/store/theFooter"; +import i18n from "@/includes/i18n"; + +const t = i18n.global.t; + +const clkEdit = t("editClientLay.clkEdit"); + const footerStore = useFooter(); // Props diff --git a/launcher/src/components/UI/edit-page/components/edit/GeneralMenu.vue b/launcher/src/components/UI/edit-page/components/edit/GeneralMenu.vue index 462e264b1..f4d201486 100644 --- a/launcher/src/components/UI/edit-page/components/edit/GeneralMenu.vue +++ b/launcher/src/components/UI/edit-page/components/edit/GeneralMenu.vue @@ -7,7 +7,7 @@ src="/img/icon/manage-node-icons/connection.png" alt="Trash Icon" @click="modifyService" - @mouseenter="footerStore.cursorLocation = `modify ${item.name} connection`" + @mouseenter="footerStore.cursorLocation = `${modify} ${item.name} ${connection}`" @mouseleave="footerStore.cursorLocation = ''" /> Trash Icon Trash Icon Trash Icon
@@ -40,6 +40,16 @@