Version Notes
stable release
Download this release
Release Info
Developer | Magento Core Team |
Extension | ET_CurrencyManager |
Version | 0.1.1 |
Comparing to | |
See all releases |
Code changes from version 0.1.0 to 0.1.1
- app/code/community/ET/CurrencyManager/etc/config.xml +21 -1
- app/code/community/ET/CurrencyManager/etc/system.xml +20 -0
- app/code/community/ET/ET_CurrencyManager_ChangeLog.txt +7 -3
- app/code/community/ET/ET_CurrencyManager_Description.txt +6 -10
- app/etc/modules/ET_CurrencyManager.xml +22 -1
- app/locale/en_US/ET_Currencymanager.csv +22 -0
- package.xml +5 -5
app/code/community/ET/CurrencyManager/etc/config.xml
CHANGED
@@ -1,8 +1,28 @@
|
|
1 |
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<ET_CurrencyManager>
|
5 |
-
<version>0.1.
|
6 |
<descr>
|
7 |
<ru_RU>
|
8 |
Позволяет управлять значениями локализации для валюты. Например: кол-во знаков после запятой для цены или символ валюты.
|
1 |
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* ET Web Solutions
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
*
|
10 |
+
* DISCLAIMER
|
11 |
+
*
|
12 |
+
* Do not edit or add to this file if you wish to upgrade to newer
|
13 |
+
* versions in the future.
|
14 |
+
*
|
15 |
+
* @category ET
|
16 |
+
* @package ET_CurrencyManager
|
17 |
+
* @copyright Copyright (c) 2010 ET Web Solutions (http://etwebsolutions.com)
|
18 |
+
* @contacts support@etwebsolutions.com
|
19 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
20 |
+
*/
|
21 |
+
-->
|
22 |
<config>
|
23 |
<modules>
|
24 |
<ET_CurrencyManager>
|
25 |
+
<version>0.1.1</version>
|
26 |
<descr>
|
27 |
<ru_RU>
|
28 |
Позволяет управлять значениями локализации для валюты. Например: кол-во знаков после запятой для цены или символ валюты.
|
app/code/community/ET/CurrencyManager/etc/system.xml
CHANGED
@@ -1,4 +1,24 @@
|
|
1 |
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<tabs>
|
4 |
<etall translate="label">
|
1 |
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* ET Web Solutions
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
*
|
10 |
+
* DISCLAIMER
|
11 |
+
*
|
12 |
+
* Do not edit or add to this file if you wish to upgrade to newer
|
13 |
+
* versions in the future.
|
14 |
+
*
|
15 |
+
* @category ET
|
16 |
+
* @package ET_CurrencyManager
|
17 |
+
* @copyright Copyright (c) 2010 ET Web Solutions (http://etwebsolutions.com)
|
18 |
+
* @contacts support@etwebsolutions.com
|
19 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
20 |
+
*/
|
21 |
+
-->
|
22 |
<config>
|
23 |
<tabs>
|
24 |
<etall translate="label">
|
app/code/community/ET/ET_CurrencyManager_ChangeLog.txt
CHANGED
@@ -8,13 +8,17 @@ Legend:
|
|
8 |
|
9 |
=====================================
|
10 |
TODO:
|
11 |
-
+ �������� �����������
|
12 |
-
group symbol (�����������
|
13 |
-
decimal separator (,
|
14 |
��� ��� � ���� ������� ��� �� �����������, �� ������� ������ �� ������ � ����� /lib/Zend/Locale/Data/
|
|
|
15 |
|
16 |
|
17 |
=====================================
|
18 |
|
|
|
|
|
|
|
19 |
ver. 0.1.0
|
20 |
+ stable relize
|
8 |
|
9 |
=====================================
|
10 |
TODO:
|
11 |
+
+ �������� ����������� ������/Add the ability to change:
|
12 |
+
group symbol (����������� �����/thousands separator)
|
13 |
+
decimal separator (, or .)
|
14 |
��� ��� � ���� ������� ��� �� �����������, �� ������� ������ �� ������ � ����� /lib/Zend/Locale/Data/
|
15 |
+
Since it is not implemented in the Magento core, it will have to write directly to files in /lib/Zend/Locale/Data/
|
16 |
|
17 |
|
18 |
=====================================
|
19 |
|
20 |
+
ver. 0.1.1
|
21 |
+
* repacking for Magento Connect
|
22 |
+
|
23 |
ver. 0.1.0
|
24 |
+ stable relize
|
app/code/community/ET/ET_CurrencyManager_Description.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
==== Для чего этот модуль? ====
|
2 |
|
3 |
RU:
|
4 |
Модуль позволяет управлять значениями локализации для валюты.
|
@@ -20,15 +20,16 @@ Things you can manage with this extension:
|
|
20 |
* symbol position (before price, after price)
|
21 |
|
22 |
|
23 |
-
|
24 |
|
25 |
-
* Free to use
|
26 |
* Open Source
|
|
|
|
|
|
|
27 |
* All options are changable in admin
|
28 |
-
* Translations avalable: en_EN, ru_RU
|
29 |
|
30 |
|
31 |
-
|
32 |
1.3.х (tested in 1.3.2.4.)
|
33 |
1.4.x (tested in 1.4.1.1.)
|
34 |
1.5.x (tested in 1.5.0.1.)
|
@@ -37,8 +38,3 @@ Things you can manage with this extension:
|
|
37 |
символ валюты, настройка отображения валюты, валюта, цена, количество знаков после запятой
|
38 |
|
39 |
price precision, round price, hide decimal, currency symbol
|
40 |
-
|
41 |
-
|
42 |
-
========================
|
43 |
-
========================
|
44 |
-
========================
|
1 |
+
==== Description / Для чего этот модуль? ====
|
2 |
|
3 |
RU:
|
4 |
Модуль позволяет управлять значениями локализации для валюты.
|
20 |
* symbol position (before price, after price)
|
21 |
|
22 |
|
23 |
+
====Features / Особенности модуля====
|
24 |
|
|
|
25 |
* Open Source
|
26 |
+
* Translations avalable:
|
27 |
+
* en_EN
|
28 |
+
* ru_RU
|
29 |
* All options are changable in admin
|
|
|
30 |
|
31 |
|
32 |
+
====Version Compatibility / Совместимость версий====
|
33 |
1.3.х (tested in 1.3.2.4.)
|
34 |
1.4.x (tested in 1.4.1.1.)
|
35 |
1.5.x (tested in 1.5.0.1.)
|
38 |
символ валюты, настройка отображения валюты, валюта, цена, количество знаков после запятой
|
39 |
|
40 |
price precision, round price, hide decimal, currency symbol
|
|
|
|
|
|
|
|
|
|
app/etc/modules/ET_CurrencyManager.xml
CHANGED
@@ -1,4 +1,25 @@
|
|
1 |
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<ET_CurrencyManager>
|
@@ -6,4 +27,4 @@
|
|
6 |
<codePool>community</codePool>
|
7 |
</ET_CurrencyManager>
|
8 |
</modules>
|
9 |
-
</config>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* ET Web Solutions
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
*
|
10 |
+
* DISCLAIMER
|
11 |
+
*
|
12 |
+
* Do not edit or add to this file if you wish to upgrade to newer
|
13 |
+
* versions in the future.
|
14 |
+
*
|
15 |
+
* @category ET
|
16 |
+
* @package ET_CurrencyManager
|
17 |
+
* @copyright Copyright (c) 2010 ET Web Solutions (http://etwebsolutions.com)
|
18 |
+
* @contacts support@etwebsolutions.com
|
19 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
20 |
+
*/
|
21 |
+
-->
|
22 |
+
|
23 |
<config>
|
24 |
<modules>
|
25 |
<ET_CurrencyManager>
|
27 |
<codePool>community</codePool>
|
28 |
</ET_CurrencyManager>
|
29 |
</modules>
|
30 |
+
</config>
|
app/locale/en_US/ET_Currencymanager.csv
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"Currency Manager","Currency Manager"
|
2 |
+
"New symbol:","New symbol:"
|
3 |
+
"Add currency symbol replace","Add currency symbol replace"
|
4 |
+
"* Select currency","* Select currency"
|
5 |
+
"Remove","Remove"
|
6 |
+
"Currency Options","Currency Options"
|
7 |
+
"Enabled","Enabled"
|
8 |
+
"Precision","Precision"
|
9 |
+
"Number of decimal (e.g. 0, 1, 2). Default: 0","Number of decimal (e.g. 0, 1, 2). Default: 0"
|
10 |
+
"Symbol position","Symbol position"
|
11 |
+
"Currency symbol use","Currency symbol use"
|
12 |
+
"e.g. Symbol = Ls, Short name = LVL, Name = Latvian Lats","e.g. Symbol = $, Short name = USD, Name = US Dollar"
|
13 |
+
"Replace symbol","Replace symbol"
|
14 |
+
"Default","Default"
|
15 |
+
"Right","Right"
|
16 |
+
"Left","Left"
|
17 |
+
"Do not use","Do not use"
|
18 |
+
"Use symbol","Use symbol"
|
19 |
+
"Use short name","Use short name"
|
20 |
+
"Use name","Use name"
|
21 |
+
"Yes","Yes"
|
22 |
+
"No","No"
|
package.xml
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ET_CurrencyManager</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
-
<license uri="http://
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Currency Manager module allow to change in admin currency's display parametrs.</summary>
|
@@ -14,9 +14,9 @@
|
|
14 |
* symbol type (name, short name/code, symbol)</description>
|
15 |
<notes>stable release</notes>
|
16 |
<authors><author><name>Jurij</name><user>auto-converted</user><email>support@etwebsolutions.com</email></author></authors>
|
17 |
-
<date>2011-02-
|
18 |
-
<time>
|
19 |
-
<contents><target name="magecommunity"><dir name="ET"><dir name="CurrencyManager"><dir name="Block"><dir name="Adminhtml"><file name="Symbolreplace.php" hash="675718a8640ede89e87edb3b6652f85d"/></dir></dir><dir name="etc"><file name="config.xml" hash="
|
20 |
<compatible/>
|
21 |
<dependencies/>
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ET_CurrencyManager</name>
|
4 |
+
<version>0.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Currency Manager module allow to change in admin currency's display parametrs.</summary>
|
14 |
* symbol type (name, short name/code, symbol)</description>
|
15 |
<notes>stable release</notes>
|
16 |
<authors><author><name>Jurij</name><user>auto-converted</user><email>support@etwebsolutions.com</email></author></authors>
|
17 |
+
<date>2011-02-25</date>
|
18 |
+
<time>08:53:05</time>
|
19 |
+
<contents><target name="magelocale"><dir name="en_US"><file name="ET_Currencymanager.csv" hash="262ae57e18307a22a25f7918221918a8"/></dir><dir name="ru_RU"><file name="ET_Currencymanager.csv" hash="895eadb455c55163f1be91e51f565992"/></dir></target><target name="magecommunity"><dir name="ET"><dir name="CurrencyManager"><dir name="Block"><dir name="Adminhtml"><file name="Symbolreplace.php" hash="675718a8640ede89e87edb3b6652f85d"/></dir></dir><dir name="etc"><file name="config.xml" hash="6b2a97956a0ee41278b96da10e55048f"/><file name="system.xml" hash="3905d76400a09b3ddc4ed1630994f888"/></dir><dir name="Helper"><file name="Data.php" hash="e62c5d7dfcd9b1bd7a59f967d671a975"/></dir><dir name="Model"><file name="Currency.php" hash="a0779a0b978ae86ab45e4ab91bbbe1c5"/><file name="Typeposition.php" hash="3c8655f73d39f74d0a0dc0efa4cf0be3"/><file name="Typesymboluse.php" hash="973fa7feb75aa4cf846ffb3cd21d8fa4"/></dir></dir><file name="ET_CurrencyManager_ChangeLog.txt" hash="0ee635b3824bce283707ec6ae1dfc197"/><file name="ET_CurrencyManager_Description.txt" hash="0e521fe493b7e72b1bbad116da69b532"/><file name="ET_CurrencyManager_LICENSE.txt" hash="b799504264c23c11a941473d7a3e3ab7"/></dir></target><target name="mageetc"><dir name="modules"><file name="ET_CurrencyManager.xml" hash="e2631245590a94c04438246a5827625f"/></dir></target></contents>
|
20 |
<compatible/>
|
21 |
<dependencies/>
|
22 |
</package>
|