18 lines
633 B
PHP
18 lines
633 B
PHP
<?php
|
|
$lv = !$langBully ? "lang" : "bully";
|
|
${$lv}['viewCat'] = array(
|
|
'search_results' => "Résultats de la recherche",
|
|
'sale_items' => "Articles de vente",
|
|
'image' => "Image",
|
|
'description' => "Description",
|
|
'name' => "Nom",
|
|
'price' => "Prix",
|
|
'location' => "Localisation:",
|
|
'buy' => "Achetez",
|
|
'more' => "Plus",
|
|
'sort' => 'Tri',
|
|
'out_of_stock' => "RUPTURE DE STOCK",
|
|
'no_products_match' => "Désolé, aucun produit ne correspond à la recherche '%s'. Il est possible que vos mots clé soient très courants.",
|
|
'no_prods_in_cat' => "Il n'existe aucun produit dans cette catégorie."
|
|
);
|
|
?>
|