// Blocklayered: Fix translation problem with category url indexing

// Blocklayered: Adding missing translation

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14824 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-04-23 15:16:28 +00:00
parent efe2c50d4d
commit 77232f234f
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -354,7 +354,7 @@ class BlockLayered extends Module
$attribute_values_by_lang[$category['id_lang']] = array();
if (!isset($attribute_values_by_lang[$category['id_lang']]['category']))
$attribute_values_by_lang[$category['id_lang']]['category'] = array();
$attribute_values_by_lang[$category['id_lang']]['category'][] = array('name' => $this->l('Categories'),
$attribute_values_by_lang[$category['id_lang']]['category'][] = array('name' => $this->translateWord('Categories', $category['id_lang']),
'id_name' => null, 'value' => $category['name'], 'id_value' => $category['id_category'],
'category_name' => $filter['link_rewrite'], 'type' => $filter['type']);
}