generated from boboko/starter
19 lines
412 B
PHP
19 lines
412 B
PHP
<?php
|
|||
|
|
|
||
|
|
return [
|
||
|
|
|
||
|
|
'nav' => [
|
||
|
|
'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',
|
||
|
|
|
||
|
|
];
|