Skip to content

Commit

Permalink
Add i18n to BatchDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Guldoman committed Apr 2, 2021
1 parent f9267ce commit be4fc84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webui/src/components/BatchDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
</v-card-title>
<v-card-text>
<v-spacer></v-spacer>
<v-btn v-if="onFinish" color="green" text @click.prevent="finish">Finish</v-btn>
<v-btn v-if="onRescan" color="warning" text @click.prevent="rescan">Rescan page</v-btn>
<v-btn color="primary" text @click.prevent="next">Next</v-btn>
<v-btn v-if="onFinish" color="green" text @click.prevent="finish">{{ $t('batch-dialog.btn-finish') }}</v-btn>
<v-btn v-if="onRescan" color="warning" text @click.prevent="rescan">{{ $t('batch-dialog.btn-rescan') }}</v-btn>
<v-btn color="primary" text @click.prevent="next">{{ $t('batch-dialog.btn-next') }}</v-btn>
<v-img v-if="image" :src="'data:image/jpeg;base64,' + image" contain />
</v-card-text>
<v-card-actions>
Expand Down

0 comments on commit be4fc84

Please sign in to comment.