Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ export default {
],
fields: [
{
title: () => "Name",
title: () => this.$t("Name"),
name: "__slot:title",
sortField: "title",
},
{
title: () => "Modified",
title: () => this.$t("Modified"),
name: "updated_at",
sortField: "updated_at",
callback: "formatDate",
Expand Down
2 changes: 1 addition & 1 deletion resources/jscomposition/base/table/THeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div
class="tw-py-4 tw-px-3 tw-text-left tw-text-nowrap tw-whitespace-nowrap tw-overflow-hidden tw-text-ellipsis">
<slot>
{{ getValue() }}
{{ $t(getValue()) }}
</slot>
</div>

Expand Down
4 changes: 4 additions & 0 deletions resources/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2428,5 +2428,9 @@
"In addition to the process manager, these users and groups will have permission to reassign any task in this process, regardless of the \"Allow Reassignment\" task setting.": "In addition to the process manager, these users and groups will have permission to reassign any task in this process, regardless of the \"Allow Reassignment\" task setting.",
"Reassignment Permission": "Reassignment Permission",
"This task can not be reassigned": "This task can not be reassigned",
"Start New Case": "Start New Case",
"No Case to Start": "No Case to Start",
"No Cases to Show": "No Cases to Show",
"Drafts": "Drafts",
"An error ocurred, please check the PI process file and try again.": "An error ocurred, please check the PI process file and try again."
}