20 lines
944 B
PHP
20 lines
944 B
PHP
<?php
|
|
|
|
$txt_str['shopping_list'] = [
|
|
'title' => 'My shopping lists',
|
|
'title_create' => 'Create list',
|
|
'products_title' => 'Products in list',
|
|
'list_delete' => 'Shopping list has been deleted.',
|
|
'delete_permissions' => 'You don\'t have sufficient permissions for deleting this item.',
|
|
'not_permission' => 'This is not your shopping list.',
|
|
'select_shopping_list' => 'Pick shopping list',
|
|
'enter_name' => 'Enter name',
|
|
'list_create' => 'Shopping list has been created.',
|
|
'add_to_shopping_list' => 'Product has been added to the list.',
|
|
'copy_to_shopping_list' => 'Cart has been copied to the shopping list.',
|
|
'list_product_delete' => 'Product has been deleted from shopping list.',
|
|
'update_shopping_list' => 'Product count has been updated.',
|
|
'need_log_in' => 'You need to log in to view this shopping list.',
|
|
'added_items_to_cart' => 'Product has been added to the shopping list.',
|
|
];
|