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>
|
||||||
<div class="modal-footer justify-content-end">
|
<div class="modal-footer justify-content-end">
|
||||||
<button class="button clear" @click.prevent="onClose">
|
<button class="button clear" @click.prevent="onClose">
|
||||||
Cancel
|
{{ $t('FILTER.CANCEL_BUTTON_LABEL') }}
|
||||||
</button>
|
</button>
|
||||||
<woot-button @click="submitFilterQuery">
|
<woot-button @click="submitFilterQuery">
|
||||||
Submit
|
{{ $t('FILTER.SUBMIT_BUTTON_LABEL') }}
|
||||||
</woot-button>
|
</woot-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
"FILTER": {
|
"FILTER": {
|
||||||
"SUBTITLE": "Add filters below and hit 'Submit' to filter conversations.",
|
"SUBTITLE": "Add filters below and hit 'Submit' to filter conversations.",
|
||||||
"ADD_NEW_FILTER": "Add Filter",
|
"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