2026-08-08 14:50:10 +03:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
|
|
'nav' => [
|
2026-08-26 13:43:30 +03:00
|
|
|
|
'home' => 'Home',
|
2026-08-08 14:50:10 +03:00
|
|
|
|
'products' => 'Products',
|
|
|
|
|
|
'contact' => 'Contact',
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
'product' => [
|
|
|
|
|
|
'description' => 'Description',
|
|
|
|
|
|
'reviews' => 'Reviews',
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
// Laravel pluralization: {0} zero|{1} one|[2,*] many. :count is replaced automatically.
|
|
|
|
|
|
'customer_reviews' => '{0} No customer reviews|{1} :count customer review|[2,*] :count customer reviews',
|
|
|
|
|
|
|
2026-08-26 13:43:30 +03:00
|
|
|
|
'shop' => [
|
|
|
|
|
|
// Laravel pluralization keyed on the total result count.
|
|
|
|
|
|
'showing_results' => '{0} No products found|{1} Showing :first–:last of :total result|[2,*] Showing :first–:last of :total results',
|
|
|
|
|
|
'no_products' => 'No products found in this category.',
|
|
|
|
|
|
'search_label' => 'Search products',
|
|
|
|
|
|
'search_placeholder' => 'Search products…',
|
|
|
|
|
|
'filter_price' => 'Filter by price',
|
|
|
|
|
|
'apply' => 'Apply',
|
|
|
|
|
|
'availability' => 'Availability',
|
|
|
|
|
|
'in_stock_only' => 'In-stock products only',
|
|
|
|
|
|
'sort_label' => 'Sort products',
|
|
|
|
|
|
'sort_default' => 'Default sorting',
|
|
|
|
|
|
'sort_popularity' => 'Popularity',
|
|
|
|
|
|
'sort_price_asc' => 'Price: Low to High',
|
|
|
|
|
|
'sort_price_desc' => 'Price: High to Low',
|
|
|
|
|
|
'sort_newest' => 'Newest',
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
'pagination' => [
|
|
|
|
|
|
'nav_label' => 'Pagination',
|
|
|
|
|
|
'page' => 'Page :page',
|
|
|
|
|
|
'next' => 'Next page',
|
|
|
|
|
|
'previous' => 'Previous page',
|
|
|
|
|
|
],
|
|
|
|
|
|
|
2026-08-08 14:50:10 +03:00
|
|
|
|
];
|