Skip to content

Commit

Permalink
Merge pull request #1774 from ProcessMaker/observation/FOUR-19978
Browse files Browse the repository at this point in the history
Observation/FOUR-19978: Not all strings are added to the Json file for translation.
  • Loading branch information
ryancooley authored Nov 13, 2024
2 parents 48e7c8a + b9a79ae commit 138e4fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/renderer/form-list-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ export default {
},
watch: {
listOption() {
this.title = this.checkTitle(this.listOption);
this.title = this.$t(this.checkTitle(this.listOption));
this.dataControl = {};
}
},
mounted() {
this.title = this.checkTitle(this.listOption);
this.title = this.$t(this.checkTitle(this.listOption));
},
methods: {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/components/renderer/form-new-request.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
</div>
<div v-else>
<formEmpty link="" title="No Case to Start" url="" />
<formEmpty link="" :title="$t('No Case to Start')" url="" />
</div>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/renderer/form-requests.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
</filter-table>
</div>
<div v-else>
<formEmpty link="Requests" title="No Cases to Show" :url="noDataUrl" />
<formEmpty link="Requests" :title="$t('No Cases to Show')" :url="noDataUrl" />
</div>
</template>

Expand Down

0 comments on commit 138e4fa

Please sign in to comment.