language strings updates

This commit is contained in:
Čarodej
2022-03-20 12:12:09 +01:00
parent 98d9f3ab0d
commit 881facc867
121 changed files with 1729 additions and 1400 deletions

View File

@@ -81,7 +81,7 @@
</td>
<td class="px-3 md:px-1">
<ColorLabel :color="$getSubscriptionStatusColor(row.data.attributes.status)">
{{ row.data.attributes.status }}
{{ $t(row.data.attributes.status) }}
</ColorLabel>
</td>
<td class="px-3 md:px-1">
@@ -160,12 +160,12 @@ export default {
sortable: true,
},
{
label: this.$t('Renews At'),
label: this.$t('renews_at'),
field: 'created_at',
sortable: true,
},
{
label: this.$t('Service'),
label: this.$t('service'),
field: 'driver',
sortable: true,
},
@@ -177,27 +177,27 @@ export default {
sortable: true,
},
{
label: this.$t('Status'),
label: this.$t('status'),
field: 'status',
sortable: true,
},
{
label: this.$t('Note'),
label: this.$t('note'),
field: 'plan.name',
sortable: true,
},
{
label: this.$t('Renews At'),
label: this.$t('renews_at'),
field: 'created_at',
sortable: true,
},
{
label: this.$t('Ends At'),
label: this.$t('ends_at'),
field: 'ends_at',
sortable: true,
},
{
label: this.$t('Service'),
label: this.$t('service'),
field: 'driver',
sortable: true,
},