If applied, adds i18n to form labels

This commit is contained in:
Fayaz Ahmed 2021-10-22 19:26:39 +05:30 committed by Tejaswini
parent c6cde3c024
commit 2fe4efa3d2
2 changed files with 5 additions and 3 deletions

View file

@ -32,10 +32,10 @@
</div>
<div class="modal-footer justify-content-end">
<button class="button clear" @click.prevent="onClose">
Cancel
{{ $t('FILTER.CANCEL_BUTTON_LABEL') }}
</button>
<woot-button @click="submitFilterQuery">
Submit
{{ $t('FILTER.SUBMIT_BUTTON_LABEL') }}
</woot-button>
</div>
</div>

View file

@ -2,6 +2,8 @@
"FILTER": {
"SUBTITLE": "Add filters below and hit 'Submit' to filter conversations.",
"ADD_NEW_FILTER": "Add Filter",
"FILTER_DELETE_ERROR": "You should have atleast 1 filter to save"
"FILTER_DELETE_ERROR": "You should have atleast 1 filter to save",
"SUBMIT_BUTTON_LABEL": "Submit",
"CANCEL_BUTTON_LABEL": "Cancel"
}
}