diff --git a/resources/js/components/shared/DataCard.vue b/resources/js/components/shared/DataCard.vue index 706e9ab707..bc104f91a0 100644 --- a/resources/js/components/shared/DataCard.vue +++ b/resources/js/components/shared/DataCard.vue @@ -4,13 +4,13 @@ @@ -20,13 +20,13 @@
- {{ info.typeHumanPlural }} may contain sensitive information. + {{ $t(info.typeHumanPlural) }} {{ $t('may contain sensitive information.') }}
- Status: + {{ $t('Status') }}: - Full {{ $root.operation }} + {{ $t('Full') }} {{ $t($root.operation) }} @@ -38,17 +38,17 @@
- Details + {{ $t('Details') }}
diff --git a/resources/js/components/shared/FilterTable.vue b/resources/js/components/shared/FilterTable.vue index 92fed23042..46aed20ef5 100644 --- a/resources/js/components/shared/FilterTable.vue +++ b/resources/js/components/shared/FilterTable.vue @@ -28,7 +28,7 @@ :style="{ width: column.width + 'px' }" > - {{ column.label }} + {{ $t(column.label) }}
diff --git a/resources/js/components/shared/SidebarNav.vue b/resources/js/components/shared/SidebarNav.vue index 1282a12afd..ace4ca8688 100644 --- a/resources/js/components/shared/SidebarNav.vue +++ b/resources/js/components/shared/SidebarNav.vue @@ -31,7 +31,7 @@ class="text-capitalize" @click="onClick(i)" > - {{ formatAssetName(page.title) }} + {{ formatAssetName($t(page.title)) }} diff --git a/resources/js/processes-catalogue/components/ProcessTab.vue b/resources/js/processes-catalogue/components/ProcessTab.vue index 8f8c84ea05..7ffed618ee 100644 --- a/resources/js/processes-catalogue/components/ProcessTab.vue +++ b/resources/js/processes-catalogue/components/ProcessTab.vue @@ -5,7 +5,7 @@ lazy >
-

{{ $root.operation }} Process: {{ processName }}

+

{{ $t($root.operation) }} {{ $t('Process') }}: {{ processName }}


-

{{ group.typeHumanPlural }}

+

{{ $t(group.typeHumanPlural) }}

-
{{ $root.operation }} Status: +
{{ $t($root.operation) }} {{ $t('Status') }}: - Full {{ $root.operation }} + {{ $t('Full') }} {{ $t($root.operation) }}
- All {{ group.typeHumanPlural }} will be included in this {{ $root.operation.toLowerCase() }}. + {{ $t('All') }} {{ $t(group.typeHumanPlural) }} will be included in this {{ $root.operation.toLowerCase() }}.
-
{{ $root.operation }} Status: +
{{ $t($root.operation) }} {{ $t('Status') }}: Not {{ $root.operation }}ing
- {{ group.typeHumanPlural }} will Not be included in this {{ $root.operation.toLowerCase() }}. + {{ $t(group.typeHumanPlural) }} will Not be included in this {{ $root.operation.toLowerCase() }}.
- Return to Summary + {{ $t('Return to Summary') }}

@@ -42,18 +42,18 @@