Version Notes
stable release
Download this release
Release Info
Developer | Magento Core Team |
Extension | ET_AdvancedCompare |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.3
- app/code/community/ET/AdvancedCompare/Block/Adminhtml/Support.php +94 -27
- app/code/community/ET/AdvancedCompare/Model/Resource/Eav/Mysql4/Product/Compare/Item/Collection.php +9 -8
- app/code/community/ET/AdvancedCompare/etc/config.xml +1 -1
- app/locale/ru_RU/ET_AdvancedCompare.csv +34 -34
- package.xml +6 -6
app/code/community/ET/AdvancedCompare/Block/Adminhtml/Support.php
CHANGED
@@ -19,11 +19,11 @@
|
|
19 |
|
20 |
class ET_AdvancedCompare_Block_Adminhtml_Support
|
21 |
extends Mage_Adminhtml_Block_Abstract
|
22 |
-
|
23 |
{
|
24 |
/**
|
25 |
* Support tab
|
26 |
-
* version
|
27 |
*/
|
28 |
public function render(Varien_Data_Form_Element_Abstract $element)
|
29 |
{
|
@@ -35,15 +35,24 @@ class ET_AdvancedCompare_Block_Adminhtml_Support
|
|
35 |
$moduleShortDescription = $this->_getConfigValue($moduleNameId, 'descr');
|
36 |
$moduleLicense = $this->_getConfigValue($moduleNameId, 'license');
|
37 |
|
38 |
-
$linkParameters = '
|
39 |
$moduleLicenseLink = $this->_getConfigValue($moduleNameId, 'licenselink') . $linkParameters;
|
40 |
$moduleSupportLink = $this->_getConfigValue($moduleNameId, 'redminelink') . $linkParameters;
|
41 |
$moduleLink = $this->_getConfigValue($moduleNameId, 'permanentlink') . $linkParameters;
|
42 |
$servicesLink = $this->_getConfigValue($moduleNameId, 'ourserviceslink') . $linkParameters;
|
43 |
|
44 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
'<style>
|
46 |
-
.line {border-top: 1px solid #c6c6c6; }
|
47 |
.developer-label {color: #000000; font-weight:bold; width: 150px;}
|
48 |
.developer-text { padding-bottom: 15px;}
|
49 |
.developer {width: 600px; }
|
@@ -54,46 +63,46 @@ class ET_AdvancedCompare_Block_Adminhtml_Support
|
|
54 |
<tr>
|
55 |
<td class="developer-label">' . $helper->__('Extension:') . '</td>
|
56 |
<td class="developer-text">' . $helper->__(
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
</tr>
|
62 |
<tr>
|
63 |
<td class="developer-label">' . $helper->__('License:') . '</td>
|
64 |
<td class="developer-text">' . $helper->__(
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
</tr>
|
70 |
<tr>
|
71 |
<td class="developer-label">' . $helper->__('Short Description:') . '</td>
|
72 |
-
<td class="developer-text">'
|
73 |
</tr>
|
74 |
<tr>
|
75 |
<td class="developer-label">' . $helper->__('Documentation:') . '</td>
|
76 |
<td class="developer-text">' . $helper->__(
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
</tr>
|
81 |
<tr>
|
82 |
<td class="developer-label line">' . $helper->__('Support:') . '</td>
|
83 |
<td class="developer-text line">' . $helper->__(
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
</tr>
|
91 |
<tr>
|
92 |
-
<td class="developer-label line"
|
93 |
<td class="developer-text line">' . $helper->__(
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
</tr>
|
98 |
</table>';
|
99 |
|
@@ -119,4 +128,62 @@ class ET_AdvancedCompare_Block_Adminhtml_Support
|
|
119 |
}
|
120 |
}
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
19 |
|
20 |
class ET_AdvancedCompare_Block_Adminhtml_Support
|
21 |
extends Mage_Adminhtml_Block_Abstract
|
22 |
+
implements Varien_Data_Form_Element_Renderer_Interface
|
23 |
{
|
24 |
/**
|
25 |
* Support tab
|
26 |
+
* version 2.0.0
|
27 |
*/
|
28 |
public function render(Varien_Data_Form_Element_Abstract $element)
|
29 |
{
|
35 |
$moduleShortDescription = $this->_getConfigValue($moduleNameId, 'descr');
|
36 |
$moduleLicense = $this->_getConfigValue($moduleNameId, 'license');
|
37 |
|
38 |
+
$linkParameters = '';
|
39 |
$moduleLicenseLink = $this->_getConfigValue($moduleNameId, 'licenselink') . $linkParameters;
|
40 |
$moduleSupportLink = $this->_getConfigValue($moduleNameId, 'redminelink') . $linkParameters;
|
41 |
$moduleLink = $this->_getConfigValue($moduleNameId, 'permanentlink') . $linkParameters;
|
42 |
$servicesLink = $this->_getConfigValue($moduleNameId, 'ourserviceslink') . $linkParameters;
|
43 |
|
44 |
+
$magentoVersion = Mage::getVersion();
|
45 |
+
$magentoPlatform = $this->_getPlatform();
|
46 |
+
$logoLink = 'https://shop.etwebsolutions.com/logotypes/' .
|
47 |
+
$magentoPlatform . '/' .
|
48 |
+
$magentoVersion . '/' .
|
49 |
+
$moduleNameId . '/' .
|
50 |
+
$moduleVersion . '/' .
|
51 |
+
'logo.png';
|
52 |
+
|
53 |
+
$html =
|
54 |
'<style>
|
55 |
+
.line {border-top: 1px solid #c6c6c6; padding-top: 10px;}
|
56 |
.developer-label {color: #000000; font-weight:bold; width: 150px;}
|
57 |
.developer-text { padding-bottom: 15px;}
|
58 |
.developer {width: 600px; }
|
63 |
<tr>
|
64 |
<td class="developer-label">' . $helper->__('Extension:') . '</td>
|
65 |
<td class="developer-text">' . $helper->__(
|
66 |
+
'<strong>%s</strong> (version %s)',
|
67 |
+
$moduleName,
|
68 |
+
$moduleVersion
|
69 |
+
) . '</td>
|
70 |
</tr>
|
71 |
<tr>
|
72 |
<td class="developer-label">' . $helper->__('License:') . '</td>
|
73 |
<td class="developer-text">' . $helper->__(
|
74 |
+
'<a href="%s" target="_blank">%s</a>',
|
75 |
+
$moduleLicenseLink,
|
76 |
+
$moduleLicense
|
77 |
+
) . '</td>
|
78 |
</tr>
|
79 |
<tr>
|
80 |
<td class="developer-label">' . $helper->__('Short Description:') . '</td>
|
81 |
+
<td class="developer-text">' . $moduleShortDescription . '</td>
|
82 |
</tr>
|
83 |
<tr>
|
84 |
<td class="developer-label">' . $helper->__('Documentation:') . '</td>
|
85 |
<td class="developer-text">' . $helper->__(
|
86 |
+
'You can see description of extension features and answers to the ' .
|
87 |
+
'frequently asked questions on <a href="%s" target="_blank">our website</a>.',
|
88 |
+
$moduleLink) . '</td>
|
89 |
</tr>
|
90 |
<tr>
|
91 |
<td class="developer-label line">' . $helper->__('Support:') . '</td>
|
92 |
<td class="developer-text line">' . $helper->__(
|
93 |
+
'Extension support is available through <a href="%s" target="_blank">issue tracking system' .
|
94 |
+
'</a>.<br>You can see information freely, but you will have to sign up to open a ticket.<br>' .
|
95 |
+
'<br>Please, report all bugs and feature requests that are related to this extension.<br>' .
|
96 |
+
'<br>If by some reason you can not submit a question, bug report or feature request to our ' .
|
97 |
+
'ticket system, you can write us an email - support@etwebsolutions.com.',
|
98 |
+
$moduleSupportLink) . '</td>
|
99 |
</tr>
|
100 |
<tr>
|
101 |
+
<td class="developer-label line"><img src="' . $logoLink . '" width="100px" height="34px"> </td>
|
102 |
<td class="developer-text line">' . $helper->__(
|
103 |
+
'You can hire our team to customize the extension. E-mail us on sales@etwebsolutions.com.<br>' .
|
104 |
+
'<br>You can see a list of provided services on <a href="%s" target="_blank">our website</a>.',
|
105 |
+
$servicesLink) . '</td>
|
106 |
</tr>
|
107 |
</table>';
|
108 |
|
128 |
}
|
129 |
}
|
130 |
|
131 |
+
const PLATFORM_CE = 'ce';
|
132 |
+
const PLATFORM_PE = 'pe';
|
133 |
+
const PLATFORM_EE = 'ee';
|
134 |
+
const PLATFORM_GO = 'go';
|
135 |
+
const PLATFORM_UNKNOWN = 'unknown';
|
136 |
+
|
137 |
+
protected
|
138 |
+
static $_platformCode = self::PLATFORM_UNKNOWN;
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Get edition code
|
142 |
+
* @return string
|
143 |
+
*/
|
144 |
+
protected function _getPlatform()
|
145 |
+
{
|
146 |
+
if (self::$_platformCode == self::PLATFORM_UNKNOWN) {
|
147 |
+
// from Magento CE version 1.7. we can get platform from Mage class
|
148 |
+
if (property_exists('Mage', '_currentEdition')) {
|
149 |
+
switch (Mage::getEdition()) {
|
150 |
+
case Mage::EDITION_COMMUNITY:
|
151 |
+
self::$_platformCode = self::PLATFORM_CE;
|
152 |
+
break;
|
153 |
+
case Mage::EDITION_PROFESSIONAL:
|
154 |
+
self::$_platformCode = self::PLATFORM_PE;
|
155 |
+
break;
|
156 |
+
case Mage::EDITION_ENTERPRISE:
|
157 |
+
self::$_platformCode = self::PLATFORM_EE;
|
158 |
+
break;
|
159 |
+
case Mage::EDITION_ENTERPRISE:
|
160 |
+
self::$_platformCode = self::PLATFORM_EE;
|
161 |
+
break;
|
162 |
+
default:
|
163 |
+
self::$_platformCode = self::PLATFORM_UNKNOWN;
|
164 |
+
}
|
165 |
+
}
|
166 |
+
|
167 |
+
// if platform still unknown
|
168 |
+
if (self::$_platformCode == self::PLATFORM_UNKNOWN) {
|
169 |
+
$modulesArray = (array)Mage::getConfig()->getNode('modules')->children();
|
170 |
+
$isEnterprise = array_key_exists('Enterprise_Enterprise', $modulesArray);
|
171 |
+
|
172 |
+
$isProfessional = false; // TODO: how determine?
|
173 |
+
$isGo = false; // TODO: how?
|
174 |
+
|
175 |
+
if ($isEnterprise) {
|
176 |
+
self::$_platformCode = self::PLATFORM_EE;
|
177 |
+
} elseif ($isProfessional) {
|
178 |
+
self::$_platformCode = self::PLATFORM_PE;
|
179 |
+
} elseif ($isGo) {
|
180 |
+
self::$_platformCode = self::PLATFORM_GO;
|
181 |
+
} else {
|
182 |
+
self::$_platformCode = self::PLATFORM_CE;
|
183 |
+
}
|
184 |
+
}
|
185 |
+
}
|
186 |
+
return self::$_platformCode;
|
187 |
+
}
|
188 |
+
|
189 |
}
|
app/code/community/ET/AdvancedCompare/Model/Resource/Eav/Mysql4/Product/Compare/Item/Collection.php
CHANGED
@@ -19,16 +19,16 @@
|
|
19 |
|
20 |
// for attribute sorting in compare window
|
21 |
|
22 |
-
class ET_AdvancedCompare_Model_Resource_Eav_Mysql4_Product_Compare_Item_Collection
|
23 |
extends Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Compare_Item_Collection
|
24 |
{
|
25 |
|
26 |
public function getComparableAttributes()
|
27 |
{
|
28 |
/* 1.3.2.3, 1.3.2.4, 1.4.0.0, 1.4.0.1, 1.4.1.1, 1.4.2.0, 1.5.0.1
|
29 |
-
// проблема с сортировкой точно существовала до версии 1411,
|
30 |
// дальше надо проверять.
|
31 |
-
// так как функция менялась в разных версиях, то для 13х и
|
32 |
// для 14х надо разные функции.
|
33 |
*/
|
34 |
|
@@ -48,6 +48,7 @@ class ET_AdvancedCompare_Model_Resource_Eav_Mysql4_Product_Compare_Item_Collecti
|
|
48 |
case '1.5':
|
49 |
case '1.6':
|
50 |
case '1.7':
|
|
|
51 |
$returnValue = $this->getComparableAttributes14x();
|
52 |
break;
|
53 |
|
@@ -131,19 +132,19 @@ class ET_AdvancedCompare_Model_Resource_Eav_Mysql4_Product_Compare_Item_Collecti
|
|
131 |
|
132 |
->joinLeft(
|
133 |
array('eag' => $this->getTable('eav/attribute_group')),
|
134 |
-
'eag.attribute_set_id = eea.attribute_set_id
|
135 |
and eag.attribute_group_id = eea.attribute_group_id',
|
136 |
array('eag_sort_order' => 'eag.sort_order')
|
137 |
-
|
138 |
-
)
|
139 |
|
140 |
|
141 |
->where('additional_table.is_comparable=?', 1)
|
142 |
->where("eag.attribute_set_id in (?)", $setIds)
|
|
|
143 |
->where('main_table.attribute_id IN(?)', $attributeIds)
|
144 |
->order(array(
|
145 |
-
'eag_sort_order ASC',
|
146 |
-
//'ai.attribute_group_id ASC',
|
147 |
'ai.sort_order ASC')
|
148 |
);
|
149 |
|
19 |
|
20 |
// for attribute sorting in compare window
|
21 |
|
22 |
+
class ET_AdvancedCompare_Model_Resource_Eav_Mysql4_Product_Compare_Item_Collection
|
23 |
extends Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Compare_Item_Collection
|
24 |
{
|
25 |
|
26 |
public function getComparableAttributes()
|
27 |
{
|
28 |
/* 1.3.2.3, 1.3.2.4, 1.4.0.0, 1.4.0.1, 1.4.1.1, 1.4.2.0, 1.5.0.1
|
29 |
+
// проблема с сортировкой точно существовала до версии 1411,
|
30 |
// дальше надо проверять.
|
31 |
+
// так как функция менялась в разных версиях, то для 13х и
|
32 |
// для 14х надо разные функции.
|
33 |
*/
|
34 |
|
48 |
case '1.5':
|
49 |
case '1.6':
|
50 |
case '1.7':
|
51 |
+
case '1.8':
|
52 |
$returnValue = $this->getComparableAttributes14x();
|
53 |
break;
|
54 |
|
132 |
|
133 |
->joinLeft(
|
134 |
array('eag' => $this->getTable('eav/attribute_group')),
|
135 |
+
'eag.attribute_set_id = eea.attribute_set_id
|
136 |
and eag.attribute_group_id = eea.attribute_group_id',
|
137 |
array('eag_sort_order' => 'eag.sort_order')
|
138 |
+
)
|
|
|
139 |
|
140 |
|
141 |
->where('additional_table.is_comparable=?', 1)
|
142 |
->where("eag.attribute_set_id in (?)", $setIds)
|
143 |
+
->where("ai.attribute_set_id in (?)", $setIds)
|
144 |
->where('main_table.attribute_id IN(?)', $attributeIds)
|
145 |
->order(array(
|
146 |
+
'eag_sort_order ASC',
|
147 |
+
//'ai.attribute_group_id ASC',
|
148 |
'ai.sort_order ASC')
|
149 |
);
|
150 |
|
app/code/community/ET/AdvancedCompare/etc/config.xml
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
<modules>
|
23 |
<ET_AdvancedCompare>
|
24 |
<name>ET Advanced Compare</name>
|
25 |
-
<version>1.0.
|
26 |
<descr>
|
27 |
<ru_RU><![CDATA[Реализует работу сравнения без перезагрузки (технология Ajax), улучшает наглядность результатов, а также позволяет отключить функцию сравнения вообще.]]>
|
28 |
</ru_RU>
|
22 |
<modules>
|
23 |
<ET_AdvancedCompare>
|
24 |
<name>ET Advanced Compare</name>
|
25 |
+
<version>1.0.3</version>
|
26 |
<descr>
|
27 |
<ru_RU><![CDATA[Реализует работу сравнения без перезагрузки (технология Ajax), улучшает наглядность результатов, а также позволяет отключить функцию сравнения вообще.]]>
|
28 |
</ru_RU>
|
app/locale/ru_RU/ET_AdvancedCompare.csv
CHANGED
@@ -1,34 +1,34 @@
|
|
1 |
-
"Advanced Compare information","Информация об Advanced Compare"
|
2 |
-
"Support by support@etwebsolutions.com<br/>You can hire our team to customize this extension to your theme. Write to sales@etwebsolutions.com","Поддержка - support@etwebsolutions.com<br/>Вы можете нанять нашу команду для изменения этого модуля под вашу тему. Пишите на sales@etwebsolutions.com"
|
3 |
-
"Remove Compare Options","Удаление сравнения. Параметры"
|
4 |
-
"Remove Compare function","Удалить функцию сравнения"
|
5 |
-
"If Yes - Removes all Add to compare links and compare blok left or right.","Если Да - будут скрыты все ссылки Добавить в сравнение и блок со списком товаров для сравнения слева или справа."
|
6 |
-
"Remove selected links","Удалить выбранные ссылки"
|
7 |
-
"If Yes - Add to compare link will be removed for products with attribute remove_compare_link=Yes","Если Да - будут скрыты ссылки Добавить в сравнение для товаров, у которых значение атрибута remove_compare_link=Да"
|
8 |
-
"Compare No Reload Options","Сравнение без перезагрузки (AJAX). Параметры"
|
9 |
-
"Enable No Reload function","Включить Сравнение без перезагрузки"
|
10 |
-
"If Yes - add to compare, remove from compare and clear compare list will work without reloading page.","Если Да - функции Добавить в сравнение, Удалить из сравнения и очистить список сравнения будут работать без перезагрузки страницы."
|
11 |
-
"Compare Popup Window Options","Окно сравнения товаров. Параметры"
|
12 |
-
"Replace Popup template","Заменить шаблон сравнения"
|
13 |
-
"If Yes - advanced template will be used. Added ability to hide attributes that does not differs.","Если Да - будет использоваться расширенный шаблон сравнения товаров. Особенность - возможность скрывать атрибуты, значения которых не отличаются."
|
14 |
-
"Show similar rows","Показывать совпадающие параметры"
|
15 |
-
"Show label after","Показывать названия атрибутов после"
|
16 |
-
"Shows attribute labels after X products. Default: 3.","Показывает колонку с названиями атрибутов после каждых Х товаров. По умолчанию: 3."
|
17 |
-
"Sort attributes","Сортировать атрибуты"
|
18 |
-
"If Yes - attributes in compare window will be sorted like in attribute set (in some Magento versions there is no sorting by default).","Если Да - атрибуты в окне сравнения будут отсортированы как в наборе атрибутов (в некоторых версиях Мадженто сортировка отсутствует)."
|
19 |
-
"Limit product comparison","Ограничение списка сравнения"
|
20 |
-
"Limit amount of compared products","Ограничить кол-во товаров в списке"
|
21 |
-
"Maximal amount of products to compare","Максимальное кол-во товаров в списке"
|
22 |
-
"Is used, if ""Limit amount of compared products"" is set to Yes","Работает только при включённом параметре ""Ограничить кол-во товаров в списке"""
|
23 |
-
"You have reached a maximal amount (%s) of products to compare simultaneously","Список сравнения ограничен. Максимальное количество товаров в списке (%s)"
|
24 |
-
|
25 |
-
"Extension:","Модуль:"
|
26 |
-
"<strong>%s</strong> (version %s)","<strong>%s</strong> (версия %s)"
|
27 |
-
"License:","Лицензия:"
|
28 |
-
"Short Description:","Краткое описание:"
|
29 |
-
"Documentation:","Документация:"
|
30 |
-
"Support:","Поддержка:"
|
31 |
-
"Advertisement:","Реклама:"
|
32 |
-
"You can see description of extension features and answers to the frequently asked questions on <a href=""%s"" target=""_balnk"">our website</a>.","Описание позможностей модуля и ответы на часто задаваемые вопросы смотрите на <a href=""%s"" target=""_balnk"">нашем сайте</a>."
|
33 |
-
"You can hire our team to customize the extension. E-mail us on sales@etwebsolutions.com.<br><br>You can see a list of provided services on <a href=""%s"" target=""_blank"">our website</a>.","Вы можете нанять нашу команду для любых работ по модификации модуля. Пишите на адрес sales@etwebsolutions.com.<br><br>Со списком предоставляемых нами услуг вы можете ознакомиться <a href=""%s"" target=""_blank"">на нашем сайте</a>."
|
34 |
-
"Extension support is available through <a href=""%s"" target=""_blank"">issue tracking system</a>.<br>You can see information freely, but you will have to sign up to open a ticket.<br><br>Please, report all bugs and feature requests that are
|
1 |
+
"Advanced Compare information","Информация об Advanced Compare"
|
2 |
+
"Support by support@etwebsolutions.com<br/>You can hire our team to customize this extension to your theme. Write to sales@etwebsolutions.com","Поддержка - support@etwebsolutions.com<br/>Вы можете нанять нашу команду для изменения этого модуля под вашу тему. Пишите на sales@etwebsolutions.com"
|
3 |
+
"Remove Compare Options","Удаление сравнения. Параметры"
|
4 |
+
"Remove Compare function","Удалить функцию сравнения"
|
5 |
+
"If Yes - Removes all Add to compare links and compare blok left or right.","Если Да - будут скрыты все ссылки Добавить в сравнение и блок со списком товаров для сравнения слева или справа."
|
6 |
+
"Remove selected links","Удалить выбранные ссылки"
|
7 |
+
"If Yes - Add to compare link will be removed for products with attribute remove_compare_link=Yes","Если Да - будут скрыты ссылки Добавить в сравнение для товаров, у которых значение атрибута remove_compare_link=Да"
|
8 |
+
"Compare No Reload Options","Сравнение без перезагрузки (AJAX). Параметры"
|
9 |
+
"Enable No Reload function","Включить Сравнение без перезагрузки"
|
10 |
+
"If Yes - add to compare, remove from compare and clear compare list will work without reloading page.","Если Да - функции Добавить в сравнение, Удалить из сравнения и очистить список сравнения будут работать без перезагрузки страницы."
|
11 |
+
"Compare Popup Window Options","Окно сравнения товаров. Параметры"
|
12 |
+
"Replace Popup template","Заменить шаблон сравнения"
|
13 |
+
"If Yes - advanced template will be used. Added ability to hide attributes that does not differs.","Если Да - будет использоваться расширенный шаблон сравнения товаров. Особенность - возможность скрывать атрибуты, значения которых не отличаются."
|
14 |
+
"Show similar rows","Показывать совпадающие параметры"
|
15 |
+
"Show label after","Показывать названия атрибутов после"
|
16 |
+
"Shows attribute labels after X products. Default: 3.","Показывает колонку с названиями атрибутов после каждых Х товаров. По умолчанию: 3."
|
17 |
+
"Sort attributes","Сортировать атрибуты"
|
18 |
+
"If Yes - attributes in compare window will be sorted like in attribute set (in some Magento versions there is no sorting by default).","Если Да - атрибуты в окне сравнения будут отсортированы как в наборе атрибутов (в некоторых версиях Мадженто сортировка отсутствует)."
|
19 |
+
"Limit product comparison","Ограничение списка сравнения"
|
20 |
+
"Limit amount of compared products","Ограничить кол-во товаров в списке"
|
21 |
+
"Maximal amount of products to compare","Максимальное кол-во товаров в списке"
|
22 |
+
"Is used, if ""Limit amount of compared products"" is set to Yes","Работает только при включённом параметре ""Ограничить кол-во товаров в списке"""
|
23 |
+
"You have reached a maximal amount (%s) of products to compare simultaneously","Список сравнения ограничен. Максимальное количество товаров в списке (%s)"
|
24 |
+
|
25 |
+
"Extension:","Модуль:"
|
26 |
+
"<strong>%s</strong> (version %s)","<strong>%s</strong> (версия %s)"
|
27 |
+
"License:","Лицензия:"
|
28 |
+
"Short Description:","Краткое описание:"
|
29 |
+
"Documentation:","Документация:"
|
30 |
+
"Support:","Поддержка:"
|
31 |
+
"Advertisement:","Реклама:"
|
32 |
+
"You can see description of extension features and answers to the frequently asked questions on <a href=""%s"" target=""_balnk"">our website</a>.","Описание позможностей модуля и ответы на часто задаваемые вопросы смотрите на <a href=""%s"" target=""_balnk"">нашем сайте</a>."
|
33 |
+
"You can hire our team to customize the extension. E-mail us on sales@etwebsolutions.com.<br><br>You can see a list of provided services on <a href=""%s"" target=""_blank"">our website</a>.","Вы можете нанять нашу команду для любых работ по модификации модуля. Пишите на адрес sales@etwebsolutions.com.<br><br>Со списком предоставляемых нами услуг вы можете ознакомиться <a href=""%s"" target=""_blank"">на нашем сайте</a>."
|
34 |
+
"Extension support is available through <a href=""%s"" target=""_blank"">issue tracking system</a>.<br>You can see information freely, but you will have to sign up to open a ticket.<br><br>Please, report all bugs and feature requests that are related to this extension.<br><br>If by some reason you can not submit a question, bug report or feature request to our ticket system, you can write us an email - support@etwebsolutions.com.","Поддержка модуля осуществляется через <a href=""%s"" target=""_blank"">систему отслеживания заданий</a>.<br>Для создания задачи будет необходимо зарегистрироваться. Для просмотра информации регистрация не требуется.<br><br>Пожалуйста, сообщайте нам о найденных ошибках и о своих пожеланиях в рамках этого модуля.<br><br>Если по каким-либо причинам вы не можете размеситить вопрос/сообщение об ошибке/пожелание в списке задач, то можете написать нам по адресу support@etwebsolutions.com."
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ET_AdvancedCompare</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://shop.etwebsolutions.com/eng/etws-license-free-v1">ETWS Free License (EFL1)</license>
|
7 |
<channel>community</channel>
|
@@ -9,10 +9,10 @@
|
|
9 |
<summary>Extension allows to add products to compare without page reloading (AJAX), improves visualization of results and allows to switch compare off on your website.</summary>
|
10 |
<description>_Extension allows to add products to compare without page reloading (AJAX), improves visualization of results and allows to switch compare off on your website._</description>
|
11 |
<notes>stable release</notes>
|
12 |
-
<authors><author><name>Jurij</name><user>
|
13 |
-
<date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="ET"><dir name="AdvancedCompare"><dir name="Block"><dir name="Adminhtml"><file name="Support.php" hash="
|
16 |
<compatible/>
|
17 |
-
<dependencies
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ET_AdvancedCompare</name>
|
4 |
+
<version>1.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://shop.etwebsolutions.com/eng/etws-license-free-v1">ETWS Free License (EFL1)</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>Extension allows to add products to compare without page reloading (AJAX), improves visualization of results and allows to switch compare off on your website.</summary>
|
10 |
<description>_Extension allows to add products to compare without page reloading (AJAX), improves visualization of results and allows to switch compare off on your website._</description>
|
11 |
<notes>stable release</notes>
|
12 |
+
<authors><author><name>Jurij</name><user>auto-converted</user><email>support@etwebsolutions.com</email></author><author><name>Andrej</name><user>auto-converted</user><email>support@etwebsolutions.com</email></author></authors>
|
13 |
+
<date>2014-03-15</date>
|
14 |
+
<time>11:12:24</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="ET"><dir name="AdvancedCompare"><dir name="Block"><dir name="Adminhtml"><file name="Support.php" hash="79d3f4eaf70ac0618a8ff806912c414c"/></dir><file name="List.php" hash="b8fa439a62955f0d5ac65246f43000ab"/></dir><dir name="Helper"><file name="Data.php" hash="702052fe21125ebfc48d8aa66cf673a1"/></dir><dir name="Model"><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><dir name="Product"><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="eaedc2d651070269053655590619724a"/></dir></dir></dir></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="edd8d80a790ea9415e4de155b25e0501"/></dir><dir name="etc"><file name="config.xml" hash="74108421f6d27a98e6d8f5a2eac6d823"/><file name="system.xml" hash="0239ba90072ca541a8bfe4b5f7d8020b"/></dir><dir name="sql"><dir name="advancedcompare_setup"><file name="mysql4-install-0.1.php" hash="e4038068589261327903f210af4ca747"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="ru_RU"><file name="ET_AdvancedCompare.csv" hash="536aea201d04850321b05bcd985de2ec"/></dir><dir name="en_US"><file name="ET_AdvancedCompare.csv" hash="772f8c59d17d778d471ad0850e8eb01e"/></dir><dir name="lv_LV"><file name="ET_AdvancedCompare.csv" hash="ed2b485b44f1df6ad41350011bcc2e06"/></dir></target><target name="mageetc"><dir name="modules"><file name="ET_AdvancedCompare.xml" hash="1f3eca245249878c9da9481464c2b84e"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="et_advancedcompare"><file name="list_13x.phtml" hash="045859ed681f3854c4c13be3e26cf275"/><file name="list_15x.phtml" hash="f5b0c350a28f87e90543c2978580abcc"/></dir></dir><dir name="layout"><file name="et_advancedcompare.xml" hash="d87c72cb9b2bea665b1cf90f038658ad"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="et_advancedcompare"><file name="noreload.css" hash="e2e7f8762594c129ad84ef865694d88e"/></dir></dir><dir name="js"><dir name="et_advancedcompare"><file name="noreload.js" hash="fce9dbe16eb0d5e412d7a78165ec8024"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies/>
|
18 |
</package>
|