diff --git a/resources/js/processes/designer/ProjectsLastModifiedListing.vue b/resources/js/processes/designer/ProjectsLastModifiedListing.vue index 358511aca6..15515640b8 100644 --- a/resources/js/processes/designer/ProjectsLastModifiedListing.vue +++ b/resources/js/processes/designer/ProjectsLastModifiedListing.vue @@ -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", diff --git a/resources/jscomposition/base/table/THeader.vue b/resources/jscomposition/base/table/THeader.vue index b61d13d221..b9aa24f079 100644 --- a/resources/jscomposition/base/table/THeader.vue +++ b/resources/jscomposition/base/table/THeader.vue @@ -5,7 +5,7 @@
- {{ getValue() }} + {{ $t(getValue()) }}
diff --git a/resources/lang/en.json b/resources/lang/en.json index 90e9a22c94..e67e6ffa78 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -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." }