Improve translations
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
fb4f35a378
commit
881c6e2f7f
|
@ -94,22 +94,31 @@ const yearList = ref(generateYears());
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardSection class="column items-center" horizontal>
|
<QCardSection class="column items-center" horizontal>
|
||||||
<span>
|
<span>
|
||||||
{{ t('Used') }} {{ contractHolidays.holidaysEnjoyed || 0 }} {{ t('of') }}
|
{{
|
||||||
{{ contractHolidays.totalHolidays || 0 }}
|
t('usedDays', {
|
||||||
{{ t('days') }}
|
holidaysEnjoyed: contractHolidays.holidaysEnjoyed || 0,
|
||||||
|
totalHolidays: contractHolidays.totalHolidays || 0,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</span>
|
</span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardSection class="column items-center" horizontal>
|
<QCardSection class="column items-center" horizontal>
|
||||||
<span>
|
<span>
|
||||||
{{ t('Spent') }} {{ contractHolidays.hoursEnjoyed || 0 }} {{ t('of') }}
|
{{
|
||||||
{{ contractHolidays.totalHours || 0 }} {{ t('hours') }}
|
t('spentHours', {
|
||||||
|
hoursEnjoyed: contractHolidays.hoursEnjoyed || 0,
|
||||||
|
totalHours: contractHolidays.totalHours || 0,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</span>
|
</span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardSection class="column items-center" horizontal>
|
<QCardSection class="column items-center" horizontal>
|
||||||
<span>
|
<span>
|
||||||
{{ t('Paid holidays') }}
|
{{
|
||||||
{{ contractHolidays.payedHolidays || 0 }}
|
t('paidHolidays', {
|
||||||
{{ t('days') }}
|
payedHolidays: contractHolidays.payedHolidays || 0,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</span>
|
</span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
</div>
|
</div>
|
||||||
|
@ -125,15 +134,21 @@ const yearList = ref(generateYears());
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardSection class="column items-center" horizontal>
|
<QCardSection class="column items-center" horizontal>
|
||||||
<span>
|
<span>
|
||||||
{{ t('Used') }} {{ yearHolidays.holidaysEnjoyed || 0 }} {{ t('of') }}
|
{{
|
||||||
{{ yearHolidays.totalHolidays || 0 }} {{ t('days') }}
|
t('usedDays', {
|
||||||
|
holidaysEnjoyed: yearHolidays.holidaysEnjoyed || 0,
|
||||||
|
totalHolidays: yearHolidays.totalHolidays || 0,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</span>
|
</span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardSection class="column items-center" horizontal>
|
<QCardSection class="column items-center" horizontal>
|
||||||
<span>
|
{{
|
||||||
{{ t('Spent') }} {{ yearHolidays.hoursEnjoyed || 0 }} {{ t('of') }}
|
t('spentHours', {
|
||||||
{{ yearHolidays.totalHours || 0 }} {{ t('hours') }}
|
hoursEnjoyed: yearHolidays.hoursEnjoyed || 0,
|
||||||
</span>
|
totalHours: yearHolidays.totalHours || 0,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
</div>
|
</div>
|
||||||
<QList dense class="list q-gutter-y-sm q-my-lg">
|
<QList dense class="list q-gutter-y-sm q-my-lg">
|
||||||
|
@ -219,15 +234,20 @@ const yearList = ref(generateYears());
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
|
en:
|
||||||
|
spentHours: Spent {hoursEnjoyed} of {totalHours} hours
|
||||||
|
usedDays: Used {holidaysEnjoyed} of {totalHolidays} days
|
||||||
|
paidHolidays: Paid holidays {payedHolidays} days
|
||||||
|
|
||||||
|
|
||||||
es:
|
es:
|
||||||
Used: Utilizados
|
|
||||||
Spent: Utilizadas
|
|
||||||
Paid holidays: Vacaciones pagadas
|
Paid holidays: Vacaciones pagadas
|
||||||
of: de
|
|
||||||
days: días
|
|
||||||
hours: horas
|
|
||||||
Year: Año
|
Year: Año
|
||||||
Contract: Contrato
|
Contract: Contrato
|
||||||
Festive: Festivo
|
Festive: Festivo
|
||||||
Current day: Día actual
|
Current day: Día actual
|
||||||
|
spentHours: Utilizadas {hoursEnjoyed} de {totalHours} horas
|
||||||
|
usedDays: Utilizados {holidaysEnjoyed} de {totalHolidays} días
|
||||||
|
paidHolidays: Vacaciones pagadas {payedHolidays} días
|
||||||
|
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
Loading…
Reference in New Issue