If applied, adds i18n to form labels
This commit is contained in:
parent
c6cde3c024
commit
2fe4efa3d2
2 changed files with 5 additions and 3 deletions
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue