More localization (#525)

* More localization

* Localize search dialog

* Fix "about" page title
This commit is contained in:
sephrat 2021-06-16 20:30:57 +02:00 committed by GitHub
parent 81fd224d88
commit f5ede73eb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 77 additions and 56 deletions

View file

@ -4,7 +4,7 @@
<v-icon large class="mr-2">
mdi-comment-text-multiple-outline
</v-icon>
Comments
{{ $t('recipe.comments') }}
</v-card-title>
<v-divider class="mx-2"></v-divider>
<v-card class="ma-2" v-for="(comment, index) in comments" :key="comment.id">
@ -43,7 +43,7 @@
<v-card-text v-if="loggedIn">
<v-textarea auto-grow row-height="1" outlined v-model="newComment"> </v-textarea>
<div class="d-flex">
<TheButton class="ml-auto" create @click="createNewComment"> Comment </TheButton>
<TheButton class="ml-auto" create @click="createNewComment"> {{ $t('recipe.comment-action') }} </TheButton>
</div>
</v-card-text>
</v-card>