@@ -18,6 +18,7 @@ import { computed, type Ref, ref } from "vue";
1818
1919import { getAppRoot } from " @/onload/loadConfig" ;
2020import { useEntryPointStore } from " @/stores/entryPointStore" ;
21+ import localize from " @/utils/localization" ;
2122import { prependPath } from " @/utils/redirect" ;
2223
2324const props = defineProps ({
@@ -112,7 +113,7 @@ function onDisplay($event: MouseEvent) {
112113 v-if =" isCollection && canShowCollectionDetails"
113114 v-b-tooltip.hover
114115 class =" collection-job-details-btn px-1"
115- title =" Show Details"
116+ : title =" localize(' Show Details') "
116117 size =" sm"
117118 variant =" link"
118119 :href =" showCollectionDetailsUrl"
@@ -123,7 +124,7 @@ function onDisplay($event: MouseEvent) {
123124 <BButton
124125 v-if =" isDataset"
125126 v-b-tooltip.hover
126- title =" View"
127+ : title =" localize(' View') "
127128 tabindex =" 0"
128129 class =" display-btn px-1"
129130 size =" sm"
@@ -136,7 +137,7 @@ function onDisplay($event: MouseEvent) {
136137 v-if =" writable && isHistoryItem"
137138 v-b-tooltip.hover
138139 :disabled =" editDisabled"
139- :title =" editButtonTitle"
140+ :title =" localize( editButtonTitle) "
140141 tabindex =" 0"
141142 class =" edit-btn px-1"
142143 size =" sm"
@@ -149,7 +150,7 @@ function onDisplay($event: MouseEvent) {
149150 v-if =" isRunningInteractiveTool"
150151 v-b-tooltip.hover
151152 class =" delete-btn px-1"
152- title =" Stop this Interactive Tool"
153+ : title =" localize(' Stop this Interactive Tool') "
153154 size =" sm"
154155 variant =" link"
155156 @click.stop =" onDelete($event)" >
@@ -160,7 +161,7 @@ function onDisplay($event: MouseEvent) {
160161 v-b-tooltip.hover
161162 :tabindex =" isDataset ? '0' : '-1'"
162163 class =" delete-btn px-1"
163- title =" Delete"
164+ : title =" localize(' Delete') "
164165 size =" sm"
165166 variant =" link"
166167 @click.stop =" onDelete($event)" >
@@ -184,7 +185,7 @@ function onDisplay($event: MouseEvent) {
184185 v-b-tooltip.hover
185186 tabindex =" 0"
186187 class =" undelete-btn px-1"
187- title =" Undelete"
188+ : title =" localize(' Undelete') "
188189 size =" sm"
189190 variant =" link"
190191 @click.stop =" emit('undelete')" >
@@ -195,7 +196,7 @@ function onDisplay($event: MouseEvent) {
195196 v-b-tooltip.hover
196197 tabindex =" 0"
197198 class =" unhide-btn px-1"
198- title =" Unhide"
199+ : title =" localize(' Unhide') "
199200 size =" sm"
200201 variant =" link"
201202 @click.stop =" emit('unhide')" >
0 commit comments