feat: editor modals translations

This commit is contained in:
Nick
2019-06-15 17:05:56 -04:00
parent 1a143d84da
commit a3be2a772a
8 changed files with 112 additions and 128 deletions

View File

@@ -1,6 +1,6 @@
<template lang='pug'>
v-toolbar.radius-7(flat, :color='$vuetify.dark ? "grey darken-4-l3" : "grey lighten-3"')
.body-2.mr-3 Every
.body-2.mr-3 {{$t('common:duration.every')}}
v-text-field(
solo
hide-details
@@ -8,7 +8,7 @@
reverse
v-model='minutes'
)
.body-2.mx-3 Minute(s)
.body-2.mx-3 {{$t('common:duration.minutes')}}
v-divider.mr-3()
v-text-field(
solo
@@ -17,7 +17,7 @@
reverse
v-model='hours'
)
.body-2.mx-3 Hour(s)
.body-2.mx-3 {{$t('common:duration.hours')}}
v-divider.mr-3()
v-text-field(
solo
@@ -26,7 +26,7 @@
reverse
v-model='days'
)
.body-2.mx-3 Day(s)
.body-2.mx-3 {{$t('common:duration.days')}}
v-divider.mr-3()
v-text-field(
solo
@@ -35,7 +35,7 @@
reverse
v-model='months'
)
.body-2.mx-3 Month(s)
.body-2.mx-3 {{$t('common:duration.months')}}
v-divider.mr-3()
v-text-field(
solo
@@ -44,7 +44,7 @@
reverse
v-model='years'
)
.body-2.mx-3 Year(s)
.body-2.mx-3 {{$t('common:duration.years')}}
</template>
<script>

View File

@@ -5,7 +5,7 @@
)
v-card.wiki-form
.dialog-header
span Search User
span {{$t('common:user.search')}}
v-spacer
v-progress-circular(
indeterminate
@@ -17,7 +17,7 @@
v-card-text
v-text-field(
outline
label='Search Users...'
:label='$t(`common:user.searchPlaceholder`)'
v-model='search'
prepend-inner-icon='search'
color='primary'
@@ -45,7 +45,7 @@
flat
@click='close'
:disabled='loading'
) Cancel
) {{$t('common:actions.cancel')}}
</template>
<script>