diff --git a/resources/js/components/PMColumnFilterPopover/PMColumnFilterOpBetween.vue b/resources/js/components/PMColumnFilterPopover/PMColumnFilterOpBetween.vue index 8c01bdb410..593de19a3f 100644 --- a/resources/js/components/PMColumnFilterPopover/PMColumnFilterOpBetween.vue +++ b/resources/js/components/PMColumnFilterPopover/PMColumnFilterOpBetween.vue @@ -1,7 +1,7 @@ diff --git a/resources/js/requests/components/RequestsListing.vue b/resources/js/requests/components/RequestsListing.vue index 266daaf587..c8cad65737 100644 --- a/resources/js/requests/components/RequestsListing.vue +++ b/resources/js/requests/components/RequestsListing.vue @@ -469,7 +469,12 @@ export default { * @returns {Array} */ getStatus() { - return ["In Progress", "Completed", "Error", "Canceled"]; + return [ + {value: "In Progress", text: this.$t("In Progress")}, + {value: "Completed", text: this.$t("Completed")}, + {value: "Error", text: this.$t("Error")}, + {value: "Canceled", text: this.$t("Canceled")} + ]; }, /** * This method is used in PMColumnFilterPopoverCommonMixin.js diff --git a/resources/js/tasks/components/TasksList.vue b/resources/js/tasks/components/TasksList.vue index 1586c17c33..98eafa69e3 100644 --- a/resources/js/tasks/components/TasksList.vue +++ b/resources/js/tasks/components/TasksList.vue @@ -494,7 +494,11 @@ export default { return cleanHtml; }, getStatus() { - return ["Self Service", "In Progress", "Completed"]; + return [ + {value: "Self Service", text: this.$t("Self Service")}, + {value: "In Progress", text: this.$t("In Progress")}, + {value: "Completed", text: this.$t("Completed")} + ]; }, /** * This method is used in PMColumnFilterPopoverCommonMixin.js diff --git a/resources/lang/de.json b/resources/lang/de.json index 9401d70a22..18519f266b 100644 --- a/resources/lang/de.json +++ b/resources/lang/de.json @@ -2033,5 +2033,6 @@ "Captcha": "Captcha", "Google Places": "Google Places", "Add an action to submit your form or update a field": "Fügen Sie eine Aktion hinzu, um Ihr Formular abzusenden oder ein Feld zu aktualisieren", - "Add special buttons that link between subpages within this Form": "Fügen Sie spezielle Schaltflächen hinzu, die zwischen Unterseiten innerhalb dieses Formulars verlinken" + "Add special buttons that link between subpages within this Form": "Fügen Sie spezielle Schaltflächen hinzu, die zwischen Unterseiten innerhalb dieses Formulars verlinken", + "input": "eingabe" } \ No newline at end of file diff --git a/resources/lang/en.json b/resources/lang/en.json index 32852da12c..640c8dc4c3 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -2035,5 +2035,6 @@ "Captcha": "Captcha", "Google Places": "Google Places", "Add an action to submit your form or update a field": "Add an action to submit your form or update a field", - "Add special buttons that link between subpages within this Form": "Add special buttons that link between subpages within this Form" + "Add special buttons that link between subpages within this Form": "Add special buttons that link between subpages within this Form", + "input": "input" } diff --git a/resources/lang/es.json b/resources/lang/es.json index db9070d160..0f0b3eca53 100644 --- a/resources/lang/es.json +++ b/resources/lang/es.json @@ -2033,5 +2033,6 @@ "Captcha": "Captcha", "Google Places": "Google Places", "Add an action to submit your form or update a field": "Agregue una acción para enviar su formulario o actualizar un campo", - "Add special buttons that link between subpages within this Form": "Agregue botones especiales que enlacen entre subpáginas dentro de este Formulario" + "Add special buttons that link between subpages within this Form": "Agregue botones especiales que enlacen entre subpáginas dentro de este Formulario", + "input": "entrada" } \ No newline at end of file diff --git a/resources/lang/fr.json b/resources/lang/fr.json index b97feaa64e..d3685cdbb9 100644 --- a/resources/lang/fr.json +++ b/resources/lang/fr.json @@ -2033,5 +2033,6 @@ "Captcha": "Captcha", "Google Places": "Google Places", "Add an action to submit your form or update a field": "Ajoutez une action pour soumettre votre formulaire ou mettre à jour un champ", - "Add special buttons that link between subpages within this Form": "Ajouter des boutons spéciaux qui lient entre les sous-pages au sein de ce Formulaire" + "Add special buttons that link between subpages within this Form": "Ajouter des boutons spéciaux qui lient entre les sous-pages au sein de ce Formulaire", + "input": "entrée" } \ No newline at end of file