Skip to content

Commit 7be12fb

Browse files
committed
Add translation strings
1 parent a495541 commit 7be12fb

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

resources/js/admin/logs/components/Logs/HeaderBar/HeaderBar.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010
class="tw-rounded-lg tw-px-3 tw-py-2 tw-text-base"
1111
:class="tabClasses('errors')"
1212
>
13-
Error Logs
13+
{{ $t('Error Logs') }}
1414
</RouterLink>
1515
<RouterLink
1616
to="/email/matched"
1717
class="tw-rounded-lg tw-px-3 tw-py-2 tw-text-base"
1818
:class="tabClasses('matched')"
1919
>
20-
Matched Logs
20+
{{ $t('Matched Logs') }}
2121
</RouterLink>
2222
<RouterLink
2323
to="/email/total"
2424
class="tw-rounded-lg tw-px-3 tw-py-2 tw-text-base"
2525
:class="tabClasses('total')"
2626
>
27-
Total Logs
27+
{{ $t('Total Logs') }}
2828
</RouterLink>
2929
</div>
3030

@@ -38,14 +38,14 @@
3838
class="tw-rounded-lg tw-px-3 tw-py-2 tw-text-base"
3939
:class="tabClasses('design')"
4040
>
41-
Design Mode Logs
41+
{{ $t('Design Mode Logs') }}
4242
</RouterLink>
4343
<RouterLink
4444
to="/agents/execution"
4545
class="tw-rounded-lg tw-px-3 tw-py-2 tw-text-base"
4646
:class="tabClasses('execution')"
4747
>
48-
Execution Logs
48+
{{ $t('Execution Logs') }}
4949
</RouterLink>
5050
</div>
5151

@@ -68,7 +68,7 @@
6868
tw-ring-0
6969
placeholder:tw-text-zinc-400
7070
"
71-
placeholder="Search here"
71+
:placeholder="$t('Search here')"
7272
:value="value"
7373
@input="onInput"
7474
@keypress="onKeypress"

resources/js/admin/logs/components/Logs/LogContainer/LogContainer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="tw-flex tw-flex-col tw-flex-1 tw-min-h-0">
1313
<div class="tw-flex tw-items-center tw-justify-between tw-my-8 tw-shrink-0">
1414
<h2 class="tw-text-2xl tw-font-semibold tw-text-zinc-900">
15-
{{ title }}
15+
{{ $t(title) }}
1616
</h2>
1717
<div v-if="showExportButton">
1818
<a

resources/lang/en.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,7 @@
656656
"Description": "Description",
657657
"Design Screen": "Design Screen",
658658
"Design": "Design",
659+
"Design Mode Logs": "Design Mode Logs",
659660
"Designer": "Designer",
660661
"Destination Screen": "Destination Screen",
661662
"Destination": "Destination",
@@ -899,13 +900,15 @@
899900
"Error Name": "Error Name",
900901
"Error": "Error",
901902
"Errors": "Errors",
903+
"Error Logs": "Error Logs",
902904
"Event Based Gateway": "Event Based Gateway",
903905
"Event has multiple event definitions": "Event has multiple event definitions",
904906
"Event-based Gateway": "Event-based Gateway",
905907
"Event-Based Gateway": "Event-Based Gateway",
906908
"Event": "Event",
907909
"Exclusive Gateway": "Exclusive Gateway",
908910
"Execution Error": "Execution Error",
911+
"Execution Logs": "Execution Logs",
909912
"Execution Log": "Execution Log",
910913
"Executor Successfully Built. You can now close this window. ": "Executor Successfully Built. You can now close this window. ",
911914
"Existing Array": "Existing Array",
@@ -979,6 +982,7 @@
979982
"Flow splits implicitly": "Flow splits implicitly",
980983
"Flow Variable": "Flow Variable",
981984
"FlowGenies": "FlowGenies",
985+
"FlowGenie Agents Logs": "FlowGenie Agents Logs",
982986
"FolderCreated": "Folder Created",
983987
"FolderUpdated": "Folder Updated",
984988
"Font Size": "Font Size",
@@ -1255,6 +1259,7 @@
12551259
"Manually Complete Request": "Manually Complete Request",
12561260
"Manually reconfigure the dashboard using an existing one in the environment.": "Manually reconfigure the dashboard using an existing one in the environment.",
12571261
"Mark as Priority": "Mark as Priority",
1262+
"Matched Logs": "Matched Logs",
12581263
"Max Input": "Max Input",
12591264
"Max Length": "Max Length",
12601265
"Max": "Max",
@@ -2407,6 +2412,7 @@
24072412
"Top Right": "Top Right",
24082413
"Top": "Top",
24092414
"Total Elements": "Total Elements",
2415+
"Total Logs": "Total Logs",
24102416
"Translate into multiple languages.": "Translate into multiple languages.",
24112417
"Translate process screens to a desired language": "Translate process screens to a desired language",
24122418
"Translation in progress": "Translation in progress",

0 commit comments

Comments
 (0)