[i18n] localize search strings

This commit is contained in:
les
2019-11-06 11:22:22 +01:00
parent d4d928fc34
commit bad9a16bcb
2 changed files with 6 additions and 6 deletions

View File

@@ -9,14 +9,14 @@
el-switch.mt-1.mb-1.ml-2.d-block( el-switch.mt-1.mb-1.ml-2.d-block(
v-if='recurrentFilter && settings.allow_recurrent_event' v-if='recurrentFilter && settings.allow_recurrent_event'
inactive-text='' inactive-text=''
active-text='anche appuntamenti fissi' :active-text="$t('event.recurrent_event_too')"
inactive-color='lightgreen' inactive-color='lightgreen'
v-model='showRecurrent' v-model='showRecurrent'
) )
el-switch.mt-1.mb-1.ml-2.d-block( el-switch.mt-1.mb-1.ml-2.d-block(
v-if='pastFilter' v-if='pastFilter'
inactive-text='solo futuri' :inactive-text="$t('event.only_future')"
active-text='anche passati' :active-text="$t('event.past_too')"
inactive-color='lightgreen' inactive-color='lightgreen'
v-model='showPast' v-model='showPast'
) )