diff --git a/app/src/interfaces/_system/system-collection/system-collection.vue b/app/src/interfaces/_system/system-collection/system-collection.vue
index 3ae68c4718..f86b31c00e 100644
--- a/app/src/interfaces/_system/system-collection/system-collection.vue
+++ b/app/src/interfaces/_system/system-collection/system-collection.vue
@@ -4,13 +4,14 @@
:disabled="disabled"
:items="items"
@update:model-value="$emit('input', $event)"
- :placeholder="$t('select_a_collection')"
+ :placeholder="t('select_a_collection')"
/>
diff --git a/app/src/interfaces/_system/system-field/system-field.vue b/app/src/interfaces/_system/system-field/system-field.vue
index 1e62a657af..ed8f95819d 100644
--- a/app/src/interfaces/_system/system-field/system-field.vue
+++ b/app/src/interfaces/_system/system-field/system-field.vue
@@ -12,7 +12,7 @@
:model-value="value"
:disabled="disabled"
:items="selectItems"
- :placeholder="$t('select_a_field')"
+ :placeholder="t('select_a_field')"
/>
diff --git a/app/src/modules/insights/components/dashboard-dialog.vue b/app/src/modules/insights/components/dashboard-dialog.vue
index fb4eea7464..dea0e0e9ae 100644
--- a/app/src/modules/insights/components/dashboard-dialog.vue
+++ b/app/src/modules/insights/components/dashboard-dialog.vue
@@ -1,27 +1,27 @@
-
+
- {{ $t('create_dashboard') }}
- {{ $t('edit_dashboard') }}
+ {{ t('create_dashboard') }}
+ {{ t('edit_dashboard') }}
-
+
-
+
- {{ $t('cancel') }}
+ {{ t('cancel') }}
- {{ $t('save') }}
+ {{ t('save') }}
@@ -31,10 +31,11 @@
diff --git a/app/src/modules/insights/routes/overview.vue b/app/src/modules/insights/routes/overview.vue
index 54b293c4dd..dd361084ca 100644
--- a/app/src/modules/insights/routes/overview.vue
+++ b/app/src/modules/insights/routes/overview.vue
@@ -1,5 +1,5 @@
-
+
@@ -17,7 +17,7 @@
@click="on"
rounded
icon
- v-tooltip.bottom="createAllowed ? $t('create_item') : $t('not_allowed')"
+ v-tooltip.bottom="createAllowed ? t('create_item') : t('not_allowed')"
:disabled="createAllowed === false"
>
@@ -28,13 +28,13 @@
-
+
@@ -50,7 +50,7 @@
- {{ $t('edit_dashboard') }}
+ {{ t('edit_dashboard') }}
@@ -59,7 +59,7 @@
- {{ $t('delete_dashboard') }}
+ {{ t('delete_dashboard') }}
@@ -67,20 +67,20 @@
-
- {{ $t('no_dashboards_copy') }}
+
+ {{ t('no_dashboards_copy') }}
- {{ $t('dashboard_delete_confirm') }}
+ {{ t('dashboard_delete_confirm') }}
- {{ $t('cancel') }}
+ {{ t('cancel') }}
- {{ $t('delete') }}
+ {{ t('delete') }}
@@ -91,11 +91,11 @@