translations
This commit is contained in:
parent
f179925e5d
commit
03f8b6dc18
|
|
@ -366,7 +366,7 @@ return [
|
|||
|
||||
'products' => [
|
||||
'layered-nav-title' => 'Einkaufen bei',
|
||||
'price-label' => 'So niedrig wie',
|
||||
'price-label' => 'Angebotspreis von',
|
||||
'remove-filter-link-title' => 'Alles löschen',
|
||||
'filter-to' => 'bis',
|
||||
'sort-by' => 'Sortieren',
|
||||
|
|
|
|||
|
|
@ -198,6 +198,8 @@ return [
|
|||
'removed' => 'تمت إزالة العنصر بنجاح من قائمة المقارنة',
|
||||
'already_added' => 'تمت إضافة العنصر بالفعل لمقارنة القائمة',
|
||||
'empty-text' => "ليس لديك أي عناصر في قائمة المقارنة الخاصة بك",
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
],
|
||||
'login-form' => [
|
||||
'sign-up' => 'سجل',
|
||||
|
|
|
|||
|
|
@ -198,6 +198,8 @@ return [
|
|||
'already_added' => 'Artikel bereits zur Vergleichsliste hinzugefügt',
|
||||
'removed' => 'Element erfolgreich aus Vergleichsliste entfernt',
|
||||
'empty-text' => "Sie haben keine Elemente in Ihrer Vergleichsliste",
|
||||
'product_image' => 'Produktbild',
|
||||
'actions' => 'Aktionen',
|
||||
],
|
||||
'login-form' => [
|
||||
'sign-up' => 'Anmelden',
|
||||
|
|
|
|||
|
|
@ -198,6 +198,8 @@ return [
|
|||
'already_added' => 'Item already added to compare list',
|
||||
'removed' => 'Item successfully removed from compare list',
|
||||
'empty-text' => "You don't have any items in your compare list",
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
],
|
||||
'login-form' => [
|
||||
'sign-up' => 'Sign up',
|
||||
|
|
|
|||
|
|
@ -198,6 +198,8 @@ return [
|
|||
'already_added' => 'مورد در حال حاضر برای مقایسه لیست اضافه شده است',
|
||||
'removed' => 'مورد با موفقیت از لیست مقایسه حذف شد',
|
||||
'empty-text' => "شما هیچ موردی را در لیست مقایسه خود ندارید",
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
],
|
||||
'login-form' => [
|
||||
'sign-up' => 'ثبت نام',
|
||||
|
|
|
|||
|
|
@ -198,6 +198,8 @@ return [
|
|||
'already_added' => 'Item already added to compare list',
|
||||
'removed' => 'Item successfully removed from compare list',
|
||||
'empty-text' => "You don't have any items in your compare list",
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
],
|
||||
'login-form' => [
|
||||
'sign-up' => 'Registreren',
|
||||
|
|
|
|||
|
|
@ -200,6 +200,8 @@ return [
|
|||
'added' => 'Item adicionado com sucesso à lista de comparação',
|
||||
'removed' => 'Item removido com sucesso da lista de comparação',
|
||||
'empty-text' => "Você não possui nenhum item na sua lista de comparação",
|
||||
'product_image' => 'Imagem do Produto',
|
||||
'actions' => 'Ações',
|
||||
],
|
||||
'login-form' => [
|
||||
'sign-up' => 'Cadastrar',
|
||||
|
|
|
|||
|
|
@ -40,19 +40,19 @@
|
|||
|
||||
array_splice($comparableAttributes, 1, 0, [[
|
||||
'code' => 'image',
|
||||
'admin_name' => 'Product Image'
|
||||
'admin_name' => __('velocity::app.customer.compare.product_image')
|
||||
]]);
|
||||
|
||||
array_splice($comparableAttributes, 2, 0, [[
|
||||
'code' => 'addToCartHtml',
|
||||
'admin_name' => 'Actions'
|
||||
'admin_name' => __('velocity::app.customer.compare.actions')
|
||||
]]);
|
||||
@endphp
|
||||
|
||||
@foreach ($comparableAttributes as $attribute)
|
||||
<tr>
|
||||
<td>
|
||||
<span class="fs16">{{ $attribute['admin_name'] }}</span>
|
||||
<span class="fs16">{{ isset($attribute['name']) ? $attribute['name'] : $attribute['admin_name'] }}</span>
|
||||
</td>
|
||||
|
||||
<td :key="`title-${index}`" v-for="(product, index) in products">
|
||||
|
|
|
|||
Loading…
Reference in New Issue