18 lines
515 B
PHP
18 lines
515 B
PHP
<?php
|
|
$lv = !$langBully ? "lang" : "bully";
|
|
${$lv}['viewCat'] = array(
|
|
'search_results' => "Search Results",
|
|
'sale_items' => "Sale Items",
|
|
'image' => "Image",
|
|
'description' => "Description",
|
|
'name' => "Name",
|
|
'price' => "Price",
|
|
'location' => "Location:",
|
|
'buy' => "Buy",
|
|
'more' => "More",
|
|
'sort' => 'Sort',
|
|
'out_of_stock' => "OUT OF STOCK",
|
|
'no_products_match' => "Sorry, no products match the query '%s'. Maybe your keywords were too common.",
|
|
'no_prods_in_cat' => "There are no products in this category."
|
|
);
|
|
?>
|