translations update

This commit is contained in:
carodej
2020-07-10 17:05:30 +02:00
parent 5bd6455f7f
commit 3c3a18cf6b
29 changed files with 503 additions and 267 deletions
+7 -7
View File
@@ -55,8 +55,8 @@
<EmptyPageContent
v-if="! isLoading && invoices.length === 0"
icon="file-text"
title="You dont have any invoices yet"
description="All customers invoices will be showed here."
:title="$t('admin_page_invoices.empty.title')"
:description="$t('admin_page_invoices.empty.description')"
>
</EmptyPageContent>
<div id="loader" v-if="isLoading">
@@ -102,27 +102,27 @@
invoices: undefined,
columns: [
{
label: 'Invoice Number',
label: this.$t('admin_page_invoices.table.number'),
field: 'data.attributes.order',
sortable: true
},
{
label: 'Total',
label: this.$t('admin_page_invoices.table.total'),
field: 'data.attributes.bag.amount',
sortable: true
},
{
label: 'Plan',
label: this.$t('admin_page_invoices.table.plan'),
field: 'data.attributes.bag.amount',
sortable: true
},
{
label: 'Payed',
label: this.$t('admin_page_invoices.table.payed'),
field: 'data.attributes.created_at',
sortable: true
},
{
label: 'User',
label: this.$t('admin_page_invoices.table.user'),
field: 'relationships.user.data.attributes.name',
sortable: true
},