- creato editor di Pagine (iniziato)
- fix: mancano i "t," su alcuni componenti...
This commit is contained in:
@@ -9,11 +9,11 @@
|
||||
class="q-pa-none"
|
||||
:title="
|
||||
!progressStep
|
||||
? $t('tutorial.title', { indstep: indstep + 1, numindstep }) +
|
||||
? t('tutorial.title', { indstep: indstep + 1, numindstep }) +
|
||||
` (` +
|
||||
progressLabel +
|
||||
`)`
|
||||
: $t('tutorial.title_completed', {
|
||||
: t('tutorial.title_completed', {
|
||||
indstep: indstep + 1,
|
||||
numindstep,
|
||||
}) +
|
||||
@@ -40,7 +40,7 @@
|
||||
color="white"
|
||||
text-color="accent"
|
||||
:label="
|
||||
$t('tutorial.completed_step', { perc: progressLabel })
|
||||
t('tutorial.completed_step', { perc: progressLabel })
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
@@ -244,10 +244,10 @@
|
||||
:color="isSalta(recstep.step) ? 'negative' : 'primary'"
|
||||
:label="
|
||||
recstep.indstep === numindstep
|
||||
? $t('dialog.finish')
|
||||
? t('dialog.finish')
|
||||
: isSalta(recstep.step)
|
||||
? $t('dialog.salta')
|
||||
: $t('dialog.avanti')
|
||||
? t('dialog.salta')
|
||||
: t('dialog.avanti')
|
||||
"
|
||||
/>
|
||||
</q-stepper-navigation>
|
||||
@@ -279,14 +279,14 @@
|
||||
<template v-slot:action>
|
||||
<q-btn
|
||||
:label="
|
||||
userstoverify.length + ' ' + $t('tutorial.utenti_da_verif_btn')
|
||||
userstoverify.length + ' ' + t('tutorial.utenti_da_verif_btn')
|
||||
"
|
||||
class="q-my-sm"
|
||||
rounded
|
||||
icon="fas fa-users"
|
||||
@click="
|
||||
usersList.show = true;
|
||||
usersList.title = $t('tutorial.utenti_da_verif_btn');
|
||||
usersList.title = t('tutorial.utenti_da_verif_btn');
|
||||
"
|
||||
/>
|
||||
<q-btn
|
||||
|
||||
Reference in New Issue
Block a user