Version Notes
- Added new translation strings for 1.8.1.0.
- Fixed some bugs
------------
- Aggiunte nuove stringhe di traduzione per la v. 1.8.1.0
- Corretti diversi bug e sviste di traduzione
Download this release
Release Info
Developer | Antonio Carboni |
Extension | Locale_Mage_community_it_IT |
Version | 1.8.1.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.8.0.0.0 to 1.8.1.0.0
- app/code/community/ItalianLocale/.DS_Store +0 -0
- app/code/community/ItalianLocale/Info/.DS_Store +0 -0
- app/code/community/ItalianLocale/Info/Block/.DS_Store +0 -0
- app/code/community/ItalianLocale/Info/Block/Adminhtml/.DS_Store +0 -0
- app/code/community/ItalianLocale/{It → Info}/Block/Adminhtml/Info.php +26 -26
- app/code/community/ItalianLocale/Info/Helper/.DS_Store +0 -0
- app/code/community/ItalianLocale/Info/Helper/Data.php +7 -0
- app/code/community/ItalianLocale/Info/etc/.DS_Store +0 -0
- app/code/community/ItalianLocale/{It → Info}/etc/adminhtml.xml +2 -2
- app/code/community/ItalianLocale/Info/etc/config.xml +26 -0
- app/code/community/ItalianLocale/{It → Info}/etc/system.xml +7 -7
- app/code/community/ItalianLocale/It/Helper/Data.php +0 -7
- app/code/community/ItalianLocale/It/etc/config.xml +0 -26
- app/design/adminhtml/default/default/template/italianlocale/.DS_Store +0 -0
- app/design/adminhtml/default/default/template/italianlocale/info.phtml +1 -1
- app/etc/modules/Italian_LocalePack.xml +0 -18
- app/etc/modules/Italian_locale.xml +11 -0
- app/locale/it_IT/.DS_Store +0 -0
- app/locale/it_IT/Mage_Adminhtml.csv +3 -0
- app/locale/it_IT/Mage_Authorizenet.csv +1 -0
- app/locale/it_IT/Mage_Bundle.csv +13 -0
- app/locale/it_IT/Mage_Catalog.csv +1 -1
- app/locale/it_IT/Mage_CatalogSearch.csv +1 -1
- app/locale/it_IT/Mage_Core.csv +1 -0
- app/locale/it_IT/Mage_CurrencySymbol.csv +2 -0
- app/locale/it_IT/Mage_Customer.csv +4 -1
- app/locale/it_IT/Mage_GoogleAnalytics.csv +1 -0
- app/locale/it_IT/Mage_ImportExport.csv +45 -2
- app/locale/it_IT/Mage_Newsletter.csv +1 -1
- app/locale/it_IT/Mage_Rule.csv +6 -6
- app/locale/it_IT/Mage_Sales.csv +19 -16
- app/locale/it_IT/Mage_Sendfriend.csv +1 -1
- app/locale/it_IT/Mage_Tax.csv +1 -0
- app/locale/it_IT/Mage_Weee.csv +5 -1
- app/locale/it_IT/template/.DS_Store +0 -0
- app/locale/it_IT/template/email/.DS_Store +0 -0
- app/locale/it_IT/template/email/payment_failed.html +1 -4
- app/locale/it_IT/template/email/product_share.html +1 -14
- app/locale/it_IT/template/email/sales/.DS_Store +0 -0
- app/locale/it_IT/template/email/sales/order_new.html +1 -1
- app/locale/it_IT/template/email/token.html +1 -9
- package.xml +12 -5
app/code/community/ItalianLocale/.DS_Store
ADDED
Binary file
|
app/code/community/ItalianLocale/Info/.DS_Store
ADDED
Binary file
|
app/code/community/ItalianLocale/Info/Block/.DS_Store
ADDED
Binary file
|
app/code/community/ItalianLocale/Info/Block/Adminhtml/.DS_Store
ADDED
Binary file
|
app/code/community/ItalianLocale/{It → Info}/Block/Adminhtml/Info.php
RENAMED
@@ -1,26 +1,26 @@
|
|
1 |
-
<?php
|
2 |
-
/* @copyright Copyright (c) 2013
|
3 |
-
class
|
4 |
-
extends Mage_Adminhtml_Block_Abstract
|
5 |
-
implements Varien_Data_Form_Element_Renderer_Interface
|
6 |
-
{
|
7 |
-
|
8 |
-
protected $_template = 'italianlocale/info.phtml';
|
9 |
-
|
10 |
-
public function render(Varien_Data_Form_Element_Abstract $fieldset)
|
11 |
-
{
|
12 |
-
|
13 |
-
foreach ($fieldset->getSortedElements() as $element) {
|
14 |
-
$htmlId = $element->getHtmlId();
|
15 |
-
$this->_elements[$htmlId] = $element;
|
16 |
-
}
|
17 |
-
$originalData = $fieldset->getOriginalData();
|
18 |
-
|
19 |
-
$this->addData(array(
|
20 |
-
'iframe_url' => isset($originalData['iframe_url']) ? $originalData['iframe_url'] : '',
|
21 |
-
));
|
22 |
-
|
23 |
-
return $this->toHtml();
|
24 |
-
}
|
25 |
-
|
26 |
-
}
|
1 |
+
<?php
|
2 |
+
/* @copyright Copyright (c) 2013 Black Cat - Antonio Carboni - http://antoniocarboni.com */
|
3 |
+
class ItalianLocale_Info_Block_Adminhtml_Info
|
4 |
+
extends Mage_Adminhtml_Block_Abstract
|
5 |
+
implements Varien_Data_Form_Element_Renderer_Interface
|
6 |
+
{
|
7 |
+
|
8 |
+
protected $_template = 'italianlocale/info.phtml';
|
9 |
+
|
10 |
+
public function render(Varien_Data_Form_Element_Abstract $fieldset)
|
11 |
+
{
|
12 |
+
|
13 |
+
foreach ($fieldset->getSortedElements() as $element) {
|
14 |
+
$htmlId = $element->getHtmlId();
|
15 |
+
$this->_elements[$htmlId] = $element;
|
16 |
+
}
|
17 |
+
$originalData = $fieldset->getOriginalData();
|
18 |
+
|
19 |
+
$this->addData(array(
|
20 |
+
'iframe_url' => isset($originalData['iframe_url']) ? $originalData['iframe_url'] : '',
|
21 |
+
));
|
22 |
+
|
23 |
+
return $this->toHtml();
|
24 |
+
}
|
25 |
+
|
26 |
+
}
|
app/code/community/ItalianLocale/Info/Helper/.DS_Store
ADDED
Binary file
|
app/code/community/ItalianLocale/Info/Helper/Data.php
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/* @copyright Copyright (c) 2013 Black Cat - Antonio Carboni - http://antoniocarboni.com */
|
3 |
+
class ItalianLocale_Info_Helper_Data extends Mage_Core_Helper_Abstract
|
4 |
+
{
|
5 |
+
|
6 |
+
}
|
7 |
+
?>
|
app/code/community/ItalianLocale/Info/etc/.DS_Store
ADDED
Binary file
|
app/code/community/ItalianLocale/{It → Info}/etc/adminhtml.xml
RENAMED
@@ -1,5 +1,5 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<!-- @copyright Copyright (c) 2013
|
3 |
<adminhtml>
|
4 |
<acl>
|
5 |
<resources>
|
@@ -10,7 +10,7 @@
|
|
10 |
<config>
|
11 |
<children>
|
12 |
<italianlocale_info module="italianlocale" translate="title">
|
13 |
-
<title>
|
14 |
<sort_order>150</sort_order>
|
15 |
</italianlocale_info>
|
16 |
</children>
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!-- @copyright Copyright (c) 2013 Black Cat - Antonio Carboni - http://antoniocarboni.com -->
|
3 |
<adminhtml>
|
4 |
<acl>
|
5 |
<resources>
|
10 |
<config>
|
11 |
<children>
|
12 |
<italianlocale_info module="italianlocale" translate="title">
|
13 |
+
<title>italianlocale</title>
|
14 |
<sort_order>150</sort_order>
|
15 |
</italianlocale_info>
|
16 |
</children>
|
app/code/community/ItalianLocale/Info/etc/config.xml
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!-- @copyright Copyright (c) 2013 Black Cat - Antonio Carboni - http://antoniocarboni.com -->
|
3 |
+
<config>
|
4 |
+
<modules>
|
5 |
+
<ItalianLocale_Info>
|
6 |
+
<version>0.1.8.1.0</version>
|
7 |
+
</ItalianLocale_Info>
|
8 |
+
</modules>
|
9 |
+
<global>
|
10 |
+
<models>
|
11 |
+
<italianlocale>
|
12 |
+
<class>ItalianLocale_Info_Models</class>
|
13 |
+
</italianlocale>
|
14 |
+
</models>
|
15 |
+
<helpers>
|
16 |
+
<italianlocale>
|
17 |
+
<class>ItalianLocale_Info_Helper</class>
|
18 |
+
</italianlocale>
|
19 |
+
</helpers>
|
20 |
+
<blocks>
|
21 |
+
<italianlocale>
|
22 |
+
<class>ItalianLocale_Info_Block</class>
|
23 |
+
</italianlocale>
|
24 |
+
</blocks>
|
25 |
+
</global>
|
26 |
+
</config>
|
app/code/community/ItalianLocale/{It → Info}/etc/system.xml
RENAMED
@@ -1,16 +1,16 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8" ?>
|
2 |
-
<!-- @copyright Copyright (c) 2013
|
3 |
<config>
|
4 |
<tabs>
|
5 |
-
<
|
6 |
-
<label>
|
7 |
-
<sort_order>
|
8 |
-
</
|
9 |
</tabs>
|
10 |
<sections>
|
11 |
<italianlocale_info translate="label" module="italianlocale">
|
12 |
-
<label>
|
13 |
-
<tab>
|
14 |
<frontend_type>text</frontend_type>
|
15 |
<sort_order>1000</sort_order>
|
16 |
<show_in_default>1</show_in_default>
|
1 |
<?xml version="1.0" encoding="UTF-8" ?>
|
2 |
+
<!-- @copyright Copyright (c) 2013 Black Cat - Antonio Carboni - http://antoniocarboni.com -->
|
3 |
<config>
|
4 |
<tabs>
|
5 |
+
<ItalianLocale_Info module="italianlocale" translate="label">
|
6 |
+
<label>Italian Localizzation</label>
|
7 |
+
<sort_order>150</sort_order>
|
8 |
+
</ItalianLocale_Info>
|
9 |
</tabs>
|
10 |
<sections>
|
11 |
<italianlocale_info translate="label" module="italianlocale">
|
12 |
+
<label>News e Info</label>
|
13 |
+
<tab>ItalianLocale_Info</tab>
|
14 |
<frontend_type>text</frontend_type>
|
15 |
<sort_order>1000</sort_order>
|
16 |
<show_in_default>1</show_in_default>
|
app/code/community/ItalianLocale/It/Helper/Data.php
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/* @copyright Copyright (c) 2013 Magenio */
|
3 |
-
class ItalianLocale_It_Helper_Data extends Mage_Core_Helper_Abstract
|
4 |
-
{
|
5 |
-
|
6 |
-
}
|
7 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/ItalianLocale/It/etc/config.xml
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<!-- @copyright Copyright (c) 2013 Magenio -->
|
3 |
-
<config>
|
4 |
-
<modules>
|
5 |
-
<ItalianLocale_It>
|
6 |
-
<version>0.1.0</version>
|
7 |
-
</ItalianLocale_It>
|
8 |
-
</modules>
|
9 |
-
<global>
|
10 |
-
<models>
|
11 |
-
<italianlocale>
|
12 |
-
<class>ItalianLocale_It_Models</class>
|
13 |
-
</italianlocale>
|
14 |
-
</models>
|
15 |
-
<helpers>
|
16 |
-
<italianlocale>
|
17 |
-
<class>ItalianLocale_It_Helper</class>
|
18 |
-
</italianlocale>
|
19 |
-
</helpers>
|
20 |
-
<blocks>
|
21 |
-
<italianlocale>
|
22 |
-
<class>ItalianLocale_It_Block</class>
|
23 |
-
</italianlocale>
|
24 |
-
</blocks>
|
25 |
-
</global>
|
26 |
-
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/adminhtml/default/default/template/italianlocale/.DS_Store
ADDED
Binary file
|
app/design/adminhtml/default/default/template/italianlocale/info.phtml
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<iframe src="<?php echo $this->getIframeUrl(); ?>" width="100%" height="
|
1 |
+
<iframe src="<?php echo $this->getIframeUrl(); ?>" width="100%" height="1500px" style="border:0; overflow:hidden"></iframe>
|
app/etc/modules/Italian_LocalePack.xml
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* @category Italian
|
5 |
-
* @package Italian_LocalePack
|
6 |
-
* @authors Antonio Carboni (http://antoniocarboni.com) - Martino Fenu - Community Mantainer of Italian Localizzation
|
7 |
-
* @version 1.8.0.0
|
8 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
9 |
-
*/
|
10 |
-
-->
|
11 |
-
<config>
|
12 |
-
<modules>
|
13 |
-
<Italian_LocalePack>
|
14 |
-
<active>false</active>
|
15 |
-
<codePool>community</codePool>
|
16 |
-
</Italian_LocalePack>
|
17 |
-
</modules>
|
18 |
-
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/etc/modules/Italian_locale.xml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2 |
+
<!-- @copyright Copyright (c) 2013 Black Cat - Antonio Carboni - http://antoniocarboni.com -->
|
3 |
+
<!-- Per segnalare problemi, bug o altro per favore contattatemi sul forum o sul form contatti che trovate nel mio sito. -->
|
4 |
+
<config>
|
5 |
+
<modules>
|
6 |
+
<ItalianLocale_Info>
|
7 |
+
<active>true</active>
|
8 |
+
<codePool>community</codePool>
|
9 |
+
</ItalianLocale_Info>
|
10 |
+
</modules>
|
11 |
+
</config>
|
app/locale/it_IT/.DS_Store
ADDED
Binary file
|
app/locale/it_IT/Mage_Adminhtml.csv
CHANGED
@@ -212,6 +212,7 @@
|
|
212 |
"Chosen product does not associated with any website, so url rewrite is not possible.","Il prodotto scelto non è associato ad alcun sito web, di conseguenza l\'url rewrite non è possibile."
|
213 |
"Clear","Cancella"
|
214 |
"Close","Chiudi"
|
|
|
215 |
"Comment text field cannot be empty.","Il campo dei commenti non può essere vuoto."
|
216 |
"Complete","Completa"
|
217 |
"Config form fieldset clone model required to be able to clone fields","Config form fieldset modello clone richiesto per abilitare la clonazione dei campi."
|
@@ -411,6 +412,7 @@
|
|
411 |
"ID Path","Percorso ID"
|
412 |
"IP Address","Indirizzo IP"
|
413 |
"IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
|
|
|
414 |
"If there is an account associated with %s you will receive an email with a link to reset your password.","Se esiste un account associato a %s riceverai un email con un link per reimpostare la tua password."
|
415 |
"If this message persists, please contact the store owner.","Se questo messaggio persiste, contattare il gestore del negozio."
|
416 |
"If you do not specify an option value for a specific store view then the default (Admin) value will be used.","Se non viene indicato un valore per ogni vista negozio verrà utilizzato il valore di default (Admin)"
|
@@ -819,6 +821,7 @@
|
|
819 |
"Role Users","Ruolo utenti"
|
820 |
"Roles","Ruoli"
|
821 |
"Roles Resources","Risorse ruoli"
|
|
|
822 |
"Rotate CCW","Ruota CCW"
|
823 |
"Rotate CW","Ruota CW"
|
824 |
"Run","Esegui"
|
212 |
"Chosen product does not associated with any website, so url rewrite is not possible.","Il prodotto scelto non è associato ad alcun sito web, di conseguenza l\'url rewrite non è possibile."
|
213 |
"Clear","Cancella"
|
214 |
"Close","Chiudi"
|
215 |
+
"Code","Codice"
|
216 |
"Comment text field cannot be empty.","Il campo dei commenti non può essere vuoto."
|
217 |
"Complete","Completa"
|
218 |
"Config form fieldset clone model required to be able to clone fields","Config form fieldset modello clone richiesto per abilitare la clonazione dei campi."
|
412 |
"ID Path","Percorso ID"
|
413 |
"IP Address","Indirizzo IP"
|
414 |
"IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
|
415 |
+
"Id","Id"
|
416 |
"If there is an account associated with %s you will receive an email with a link to reset your password.","Se esiste un account associato a %s riceverai un email con un link per reimpostare la tua password."
|
417 |
"If this message persists, please contact the store owner.","Se questo messaggio persiste, contattare il gestore del negozio."
|
418 |
"If you do not specify an option value for a specific store view then the default (Admin) value will be used.","Se non viene indicato un valore per ogni vista negozio verrà utilizzato il valore di default (Admin)"
|
821 |
"Role Users","Ruolo utenti"
|
822 |
"Roles","Ruoli"
|
823 |
"Roles Resources","Risorse ruoli"
|
824 |
+
"Root Category","Categoria di Root"
|
825 |
"Rotate CCW","Ruota CCW"
|
826 |
"Rotate CW","Ruota CW"
|
827 |
"Run","Esegui"
|
app/locale/it_IT/Mage_Authorizenet.csv
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
"--Please Select--","--Selezionare--"
|
2 |
"API Login ID","API Login ID"
|
3 |
"Accepted Currency","Valute accettate"
|
|
|
4 |
"Authorize.net Direct Post","Authorize.net Direct Post"
|
5 |
"Card Verification Number","Numero di verifica carta"
|
6 |
"Card Verification Number Visual Reference","Verifica numero carta riferimento visivo"
|
1 |
"--Please Select--","--Selezionare--"
|
2 |
"API Login ID","API Login ID"
|
3 |
"Accepted Currency","Valute accettate"
|
4 |
+
"Amount of %s approved by payment gateway. Transaction ID: ""%s"".","Importo di %s approvato dal gateway di pagamento. ID Transazione: ""%s""."
|
5 |
"Authorize.net Direct Post","Authorize.net Direct Post"
|
6 |
"Card Verification Number","Numero di verifica carta"
|
7 |
"Card Verification Number Visual Reference","Verifica numero carta riferimento visivo"
|
app/locale/it_IT/Mage_Bundle.csv
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
"* Required Fields","* Campi obbligatori"
|
2 |
"-- Select --","-- Seleziona --"
|
3 |
"Add New Option","Aggiungi una nuova opzione"
|
@@ -6,10 +7,16 @@
|
|
6 |
"As low as","A partire da "
|
7 |
"Bundle Items","Articoli Bundle"
|
8 |
"Bundle Product","Prodotto Bundle"
|
|
|
|
|
|
|
|
|
|
|
9 |
"Buy %1$s with %2$s discount each","Compra %1$s con %2$s di sconto per ciascuno"
|
10 |
"Catalog Product View (Bundle)","Vista prodotti catalogo (Bundle)"
|
11 |
"Checkbox","Checkbox"
|
12 |
"Choose a selection...","Scegli una opzione..."
|
|
|
13 |
"Close","Chiuso"
|
14 |
"Default","Predefinito"
|
15 |
"Default Qty","Qtà predefinita"
|
@@ -17,11 +24,13 @@
|
|
17 |
"Drop-down","Drop-down"
|
18 |
"Dynamic","Dinamico"
|
19 |
"Excl. Tax","Escl. Tasse"
|
|
|
20 |
"Fixed","Fixed"
|
21 |
"From","Da"
|
22 |
"From:","Da:"
|
23 |
"Gift Message","Gift Message"
|
24 |
"Incl. Tax","Incl. Tasse"
|
|
|
25 |
"Input Type","Tipo in ingresso"
|
26 |
"Is Required","È obbligatorio"
|
27 |
"Message:","Messaggio:"
|
@@ -53,5 +62,9 @@
|
|
53 |
"To","A"
|
54 |
"To:","A:"
|
55 |
"Together","Insieme"
|
|
|
56 |
"Use Default Value","Usa valore predefinito"
|
57 |
"User Defined Qty","Qtà definita utente"
|
|
|
|
|
|
1 |
+
"%1$s incl tax.","%1$s incl tasse"
|
2 |
"* Required Fields","* Campi obbligatori"
|
3 |
"-- Select --","-- Seleziona --"
|
4 |
"Add New Option","Aggiungi una nuova opzione"
|
7 |
"As low as","A partire da "
|
8 |
"Bundle Items","Articoli Bundle"
|
9 |
"Bundle Product","Prodotto Bundle"
|
10 |
+
"Buy %1$s","Compra %1$s"
|
11 |
+
"Buy %1$s for","Compra %1$s per"
|
12 |
+
"Buy %1$s for %2$s","Compra %1$s per %2$s"
|
13 |
+
"Buy %1$s for %2$s (%3$s incl. tax) each","Compra %1$s per %2$s (%3$s incl. tasse) ciascuno"
|
14 |
+
"Buy %1$s for %2$s each","Compra %1$s per %2$s ciascuno"
|
15 |
"Buy %1$s with %2$s discount each","Compra %1$s con %2$s di sconto per ciascuno"
|
16 |
"Catalog Product View (Bundle)","Vista prodotti catalogo (Bundle)"
|
17 |
"Checkbox","Checkbox"
|
18 |
"Choose a selection...","Scegli una opzione..."
|
19 |
+
"Click for price","Clicca per il prezzo"
|
20 |
"Close","Chiuso"
|
21 |
"Default","Predefinito"
|
22 |
"Default Qty","Qtà predefinita"
|
24 |
"Drop-down","Drop-down"
|
25 |
"Dynamic","Dinamico"
|
26 |
"Excl. Tax","Escl. Tasse"
|
27 |
+
"Excl. Tax:","Escl. Tasse:"
|
28 |
"Fixed","Fixed"
|
29 |
"From","Da"
|
30 |
"From:","Da:"
|
31 |
"Gift Message","Gift Message"
|
32 |
"Incl. Tax","Incl. Tasse"
|
33 |
+
"Incl. Tax:","Incl. Tasse:"
|
34 |
"Input Type","Tipo in ingresso"
|
35 |
"Is Required","È obbligatorio"
|
36 |
"Message:","Messaggio:"
|
62 |
"To","A"
|
63 |
"To:","A:"
|
64 |
"Together","Insieme"
|
65 |
+
"Total incl. Tax: %1$s","Totale incl. Tasse: %1$s"
|
66 |
"Use Default Value","Usa valore predefinito"
|
67 |
"User Defined Qty","Qtà definita utente"
|
68 |
+
"and","e"
|
69 |
+
"each","ciascuno"
|
70 |
+
"save","salva"
|
app/locale/it_IT/Mage_Catalog.csv
CHANGED
@@ -196,7 +196,7 @@
|
|
196 |
"Comparable on the Frontend","Comparabile sul Frontend"
|
197 |
"Compare","Confronta"
|
198 |
"Compare Products","Confronta prodotti"
|
199 |
-
"Conditions Combination","
|
200 |
"Configurable Product","Prodotto configurabile"
|
201 |
"Configurable Product Settings","Impostazioni prodotto configurabile"
|
202 |
"Configure Product","Configura prodotto"
|
196 |
"Comparable on the Frontend","Comparabile sul Frontend"
|
197 |
"Compare","Confronta"
|
198 |
"Compare Products","Confronta prodotti"
|
199 |
+
"Conditions Combination","Combinazione di Condizioni"
|
200 |
"Configurable Product","Prodotto configurabile"
|
201 |
"Configurable Product Settings","Impostazioni prodotto configurabile"
|
202 |
"Configure Product","Configura prodotto"
|
app/locale/it_IT/Mage_CatalogSearch.csv
CHANGED
@@ -31,7 +31,7 @@
|
|
31 |
"Popular Search Terms","Termini di ricerca popolari"
|
32 |
"Quick Search Form","Modulo ricerca veloce"
|
33 |
"Rebuild Catalog product fulltext search index","Ricostruire catalogo prodotti testo completo indice di ricerca"
|
34 |
-
"Relevance","
|
35 |
"Results","Risultati"
|
36 |
"Search","Ricerca"
|
37 |
"Search Settings","Impostazioni di ricerca"
|
31 |
"Popular Search Terms","Termini di ricerca popolari"
|
32 |
"Quick Search Form","Modulo ricerca veloce"
|
33 |
"Rebuild Catalog product fulltext search index","Ricostruire catalogo prodotti testo completo indice di ricerca"
|
34 |
+
"Relevance","Rilevanza"
|
35 |
"Results","Risultati"
|
36 |
"Search","Ricerca"
|
37 |
"Search Settings","Impostazioni di ricerca"
|
app/locale/it_IT/Mage_Core.csv
CHANGED
@@ -156,6 +156,7 @@
|
|
156 |
"Invalid block type: %s","Tipo blocco non valido: %s"
|
157 |
"Invalid block: %s","Blocco non valido: %s"
|
158 |
"Invalid connection","Connessione non valida"
|
|
|
159 |
"Invalid layout update handle","Aggiornamento layout da gestire non valido"
|
160 |
"Invalid messages storage ""%s"" for layout messages initialization","Messaggio archiviazione non valido ""%s"" per l\'inizializzazione messaggi layout"
|
161 |
"Invalid query","Query non valida"
|
156 |
"Invalid block type: %s","Tipo blocco non valido: %s"
|
157 |
"Invalid block: %s","Blocco non valido: %s"
|
158 |
"Invalid connection","Connessione non valida"
|
159 |
+
"Invalid date","Data non valida"
|
160 |
"Invalid layout update handle","Aggiornamento layout da gestire non valido"
|
161 |
"Invalid messages storage ""%s"" for layout messages initialization","Messaggio archiviazione non valido ""%s"" per l\'inizializzazione messaggi layout"
|
162 |
"Invalid query","Query non valida"
|
app/locale/it_IT/Mage_CurrencySymbol.csv
CHANGED
@@ -1,8 +1,10 @@
|
|
|
|
1 |
"Custom currency symbols were applied successfully.","I simboli personalizzati per la valuta sono stati applicati."
|
2 |
"Manage Currency","Gestisci valuta"
|
3 |
"Manage Currency Rates","Gestisci tassi di conversione"
|
4 |
"Rates","Tassi"
|
5 |
"Save Currency Symbols","Salva simboli valuta"
|
|
|
6 |
"Symbols","Simboli"
|
7 |
"System","Sistema"
|
8 |
"Use Default","Usa predefinito"
|
1 |
+
"Currency","Valuta"
|
2 |
"Custom currency symbols were applied successfully.","I simboli personalizzati per la valuta sono stati applicati."
|
3 |
"Manage Currency","Gestisci valuta"
|
4 |
"Manage Currency Rates","Gestisci tassi di conversione"
|
5 |
"Rates","Tassi"
|
6 |
"Save Currency Symbols","Salva simboli valuta"
|
7 |
+
"Symbol","Simbolo"
|
8 |
"Symbols","Simboli"
|
9 |
"System","Sistema"
|
10 |
"Use Default","Usa predefinito"
|
app/locale/it_IT/Mage_Customer.csv
CHANGED
@@ -78,6 +78,7 @@
|
|
78 |
"Create an Account","Crea un account"
|
79 |
"Create customer","Crea cliente"
|
80 |
"Create customer address","Crea indirizzo cliente"
|
|
|
81 |
"Current Password","Password corrente"
|
82 |
"Customer","Cliente"
|
83 |
"Customer API","API cliente"
|
@@ -284,6 +285,7 @@
|
|
284 |
"Please select region, state or province","Inserisci regione, stato o provincia"
|
285 |
"Please, check your email for confirmation key.","Per favore, cerca nella tua email il codice di conferma."
|
286 |
"Prefix Dropdown Options","Opzioni Prefisso"
|
|
|
287 |
"Price","Prezzo"
|
288 |
"Product","Prodotto"
|
289 |
"Product ID","ID prodotto"
|
@@ -359,7 +361,8 @@
|
|
359 |
"Subject","Oggetto"
|
360 |
"Submit","Invia"
|
361 |
"Subscribe to Newsletter","Iscrivi alla newsletter"
|
362 |
-
"Subscribed to Newsletter?","Iscritto
|
|
|
363 |
"Suffix Dropdown Options","Opzioni Suffisso"
|
364 |
"Tag Name","Nome tag"
|
365 |
"Tax Calculation Based On","Calcolo tasse basato su"
|
78 |
"Create an Account","Crea un account"
|
79 |
"Create customer","Crea cliente"
|
80 |
"Create customer address","Crea indirizzo cliente"
|
81 |
+
"Created From","Creato da"
|
82 |
"Current Password","Password corrente"
|
83 |
"Customer","Cliente"
|
84 |
"Customer API","API cliente"
|
285 |
"Please select region, state or province","Inserisci regione, stato o provincia"
|
286 |
"Please, check your email for confirmation key.","Per favore, cerca nella tua email il codice di conferma."
|
287 |
"Prefix Dropdown Options","Opzioni Prefisso"
|
288 |
+
"Prefix","Prefisso"
|
289 |
"Price","Prezzo"
|
290 |
"Product","Prodotto"
|
291 |
"Product ID","ID prodotto"
|
361 |
"Subject","Oggetto"
|
362 |
"Submit","Invia"
|
363 |
"Subscribe to Newsletter","Iscrivi alla newsletter"
|
364 |
+
"Subscribed to Newsletter?","Iscritto alla newsletter?"
|
365 |
+
"Suffix","Suffisso"
|
366 |
"Suffix Dropdown Options","Opzioni Suffisso"
|
367 |
"Tag Name","Nome tag"
|
368 |
"Tax Calculation Based On","Calcolo tasse basato su"
|
app/locale/it_IT/Mage_GoogleAnalytics.csv
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
"Account Number","Numero account"
|
2 |
"Enable","Attiva"
|
|
|
3 |
"Google API","Google API"
|
4 |
"Google Analytics","Google Analytics"
|
1 |
"Account Number","Numero account"
|
2 |
"Enable","Attiva"
|
3 |
+
"Enable IP anonymization","Abilita anonimizzazione IP"
|
4 |
"Google API","Google API"
|
5 |
"Google Analytics","Google Analytics"
|
app/locale/it_IT/Mage_ImportExport.csv
CHANGED
@@ -1,27 +1,50 @@
|
|
|
|
1 |
" in rows: ","nelle righe: "
|
2 |
"-- Please Select --","-- Seleziona --"
|
3 |
"Adapter must be an instance of Mage_ImportExport_Model_Import_Adapter_Abstract","Adapter must be an instance of Mage_ImportExport_Model_Import_Adapter_Abstract"
|
|
|
4 |
"Adapter type must be a non empty string","Il tipo di adattatore non deve avere stringhe vuote"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
"Can not determine attribute filter type","Impossibile determinare tipo di filtro per l\'attributo"
|
6 |
-
"Can not find required columns: ","
|
7 |
"Can not get autoincrement value","Impossibile ottenere valore autoincrementato"
|
8 |
"Check Data","Controlla Dati"
|
|
|
9 |
"Column names have duplicates","Il nome della colonna ha un duplicato"
|
10 |
"Column names is empty or is not an array","I nomi delle colonne sono vuoti o non sono ordinati"
|
11 |
"Column names: ""%s"" are invalid","Nome colonna: ""%s"" non valido"
|
12 |
"Continue","Continua"
|
|
|
13 |
"Data is invalid or file is not uploaded","Dati non validi o file non caricato"
|
|
|
14 |
"Destination directory is not writable","Cartella di destinazione non scrivibile"
|
15 |
"Destination file is not writable","File di destinazione non scrivibile"
|
16 |
"Destination file path must be a string","Il percorso di destinazione del file deve essere una stringa"
|
17 |
"Entity Attributes","Entità attributi"
|
|
|
|
|
|
|
|
|
18 |
"Entity adapter object must be an instance of Mage_ImportExport_Model_Import_Entity_Abstract","Entity adapter object must be an instance of Mage_ImportExport_Model_Import_Entity_Abstract"
|
19 |
"Entity is unknown","Entità sconosciuta"
|
20 |
"Entity type model must be an instance of Mage_ImportExport_Model_Export_Entity_Product_Type_Abstract","Entity type model must be an instance of Mage_ImportExport_Model_Export_Entity_Product_Type_Abstract"
|
21 |
"Entity type model must be an instance of Mage_ImportExport_Model_Import_Entity_Product_Type_Abstract","Entity type model must be an instance of Mage_ImportExport_Model_Import_Entity_Product_Type_Abstract"
|
22 |
"Error in data structure: behaviors are mixed","Error in data structure: behaviors are mixed"
|
23 |
"Error in data structure: entity codes are mixed","Errore nella struttura dati: i codici entità sono misti"
|
|
|
24 |
"Export","Esporta"
|
|
|
|
|
|
|
|
|
|
|
25 |
"Export FAQ","Esporta FAQ"
|
26 |
"FAQ","FAQ"
|
27 |
"File does not contain data. Please upload another one","Il file non contiene dati. Per favore caricane un altro"
|
@@ -30,19 +53,27 @@
|
|
30 |
"File is totally invalid. Please fix errors and re-upload file","File totalmente non valido. Per favore correggi gli errore e ricaricalo"
|
31 |
"File is valid! To start import process press ""Import"" button","File valido! Per iniziare l\'importazione premi il pulsante “Importa”"
|
32 |
"File is valid, but import is not possible","File valido, ma importazione impossibile"
|
|
|
|
|
|
|
33 |
"Header column names already set","Intestazione nome colonna già impostata"
|
34 |
"Import","Importa"
|
|
|
|
|
|
|
35 |
"Import / Export FAQ (Frequently Asked Questions)","Importa / Esporta FAQ (domande frequenti)"
|
36 |
"Import FAQ","Importa FAQ"
|
37 |
"Import successfully done.","Importazione eseguita con successo"
|
38 |
"Import/Export","Importa/Esporta"
|
39 |
"In/Out","Dentro/Fuori"
|
40 |
"Input entity code is not equal to entity adapter code","Entità codice inserita non è uguale all\'entità adattatore"
|
41 |
-
"Invalid entity","
|
|
|
42 |
"Invalid file format","Formato file non valido"
|
43 |
"Invalid parameters","Paramentri non validi"
|
44 |
"Invalid seek position","Posizione cercata non valida"
|
45 |
"Invalid value for '%s'","Valore non valido per '%s'"
|
|
|
46 |
"No filter data provided","Nessun filtro dati fornito"
|
47 |
"No source specified","Nessuna sorgente specificata"
|
48 |
"No valid data sent","Nessun dato valido inviato"
|
@@ -51,6 +82,10 @@
|
|
51 |
"Not implemented yet","Non ancora implementato"
|
52 |
"Please fix errors and re-upload file","Correggi gli errori e ricarica il file"
|
53 |
"Please fix errors and re-upload file or simply press ""Import"" button to skip rows with errors","Per favore correggi gli errori e ricarica il file o semplicemente premi il bottone ""Importa"" per saltare le righe con errori"
|
|
|
|
|
|
|
|
|
54 |
"Some other FAQ","Altre FAQ"
|
55 |
"Source file moving failed","Spostamento fonte del file fallita"
|
56 |
"Source file path must be a string","Il percorso della fonte del file deve essere una stringa"
|
@@ -58,6 +93,14 @@
|
|
58 |
"Status","Status"
|
59 |
"System busy","Sistema occupato"
|
60 |
"There are no product types available for export","Non ci sono tipi di prodotti disponibili da esportare"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
"Total size of uploadable files must not exceed %s","La grandezza totale dei file caricabili non deve superare i %s"
|
62 |
"Uploaded file has no extension","I file caricati non hanno estensione"
|
63 |
"Validation Results","Convalida risultati"
|
1 |
+
%s file does not exists or is not readable","%s file non esiste o non è leggibile"
|
2 |
" in rows: ","nelle righe: "
|
3 |
"-- Please Select --","-- Seleziona --"
|
4 |
"Adapter must be an instance of Mage_ImportExport_Model_Import_Adapter_Abstract","Adapter must be an instance of Mage_ImportExport_Model_Import_Adapter_Abstract"
|
5 |
+
"Adapter object must be an instance of %s","Adapter object must be an instance of %s"
|
6 |
"Adapter type must be a non empty string","Il tipo di adattatore non deve avere stringhe vuote"
|
7 |
+
"Append Complex Data","Append Complex Data"
|
8 |
+
"Attribute Code","Codice Attributo"
|
9 |
+
"Attribute Label","Etichetta Attributo"
|
10 |
+
"Attribute does not has options, so filtering is impossible","Attributo non ha opzioni, perciò filtrarlo è impossibile"
|
11 |
+
"Begin data validation","Inizia validazione dati"
|
12 |
+
"Begin export of %s","Inizia esportazione di %s"
|
13 |
+
"Begin import of ""%s"" with ""%s"" behavior","Inizia esportazione di ""%s"" con ""%s"" behavior"
|
14 |
+
"CSV","CSV"
|
15 |
"Can not determine attribute filter type","Impossibile determinare tipo di filtro per l\'attributo"
|
16 |
+
"Can not find required columns: %s","Non posso trovare le colonne richieste: %s"
|
17 |
"Can not get autoincrement value","Impossibile ottenere valore autoincrementato"
|
18 |
"Check Data","Controlla Dati"
|
19 |
+
"Checked rows: %d, checked entities: %d, invalid rows: %d, total errors: %d","Righe controllate: %d, entities controllate: %d, righe non valide: %d, errori totali: %d"
|
20 |
"Column names have duplicates","Il nome della colonna ha un duplicato"
|
21 |
"Column names is empty or is not an array","I nomi delle colonne sono vuoti o non sono ordinati"
|
22 |
"Column names: ""%s"" are invalid","Nome colonna: ""%s"" non valido"
|
23 |
"Continue","Continua"
|
24 |
+
"Customers","Clienti"
|
25 |
"Data is invalid or file is not uploaded","Dati non validi o file non caricato"
|
26 |
+
"Delete Entities","Elimina Entities"
|
27 |
"Destination directory is not writable","Cartella di destinazione non scrivibile"
|
28 |
"Destination file is not writable","File di destinazione non scrivibile"
|
29 |
"Destination file path must be a string","Il percorso di destinazione del file deve essere una stringa"
|
30 |
"Entity Attributes","Entità attributi"
|
31 |
+
"Done import data validation","Done import data validation"
|
32 |
+
"Duplicate Unique Attribute for '%s'","Duplicate Unique Attribute for '%s'"
|
33 |
+
"Entity Type","Tipo Entity"
|
34 |
+
"Entity adapter obejct must be an instance of Mage_ImportExport_Model_Export_Entity_Abstract","Entity adapter obejct must be an instance of Mage_ImportExport_Model_Export_Entity_Abstract"
|
35 |
"Entity adapter object must be an instance of Mage_ImportExport_Model_Import_Entity_Abstract","Entity adapter object must be an instance of Mage_ImportExport_Model_Import_Entity_Abstract"
|
36 |
"Entity is unknown","Entità sconosciuta"
|
37 |
"Entity type model must be an instance of Mage_ImportExport_Model_Export_Entity_Product_Type_Abstract","Entity type model must be an instance of Mage_ImportExport_Model_Export_Entity_Product_Type_Abstract"
|
38 |
"Entity type model must be an instance of Mage_ImportExport_Model_Import_Entity_Product_Type_Abstract","Entity type model must be an instance of Mage_ImportExport_Model_Import_Entity_Product_Type_Abstract"
|
39 |
"Error in data structure: behaviors are mixed","Error in data structure: behaviors are mixed"
|
40 |
"Error in data structure: entity codes are mixed","Errore nella struttura dati: i codici entità sono misti"
|
41 |
+
"Errors limit (%d) reached. Please fix errors and re-upload file","Errors limit (%d) reached. Please fix errors and re-upload file"
|
42 |
"Export","Esporta"
|
43 |
+
"Export File Format","Esporta formato File"
|
44 |
+
"Export Settings","Esporta Impostazioni"
|
45 |
+
"Export has been done.","Esportazione eseguita."
|
46 |
+
"Exported %s rows.","%s righe esportate."
|
47 |
+
"File does not contain data.","Il file non contiene dati."
|
48 |
"Export FAQ","Esporta FAQ"
|
49 |
"FAQ","FAQ"
|
50 |
"File does not contain data. Please upload another one","Il file non contiene dati. Per favore caricane un altro"
|
53 |
"File is totally invalid. Please fix errors and re-upload file","File totalmente non valido. Per favore correggi gli errore e ricaricalo"
|
54 |
"File is valid! To start import process press ""Import"" button","File valido! Per iniziare l\'importazione premi il pulsante “Importa”"
|
55 |
"File is valid, but import is not possible","File valido, ma importazione impossibile"
|
56 |
+
"File was not uploaded","Il file non è stato caricato"
|
57 |
+
"Filter","Filtro"
|
58 |
+
"From","From"
|
59 |
"Header column names already set","Intestazione nome colonna già impostata"
|
60 |
"Import","Importa"
|
61 |
+
"Import Behavior","Import Behavior"
|
62 |
+
"Import Settings","Importa Impostazioni"
|
63 |
+
"Import has been done successfuly.","Importazione completata con successo."
|
64 |
"Import / Export FAQ (Frequently Asked Questions)","Importa / Esporta FAQ (domande frequenti)"
|
65 |
"Import FAQ","Importa FAQ"
|
66 |
"Import successfully done.","Importazione eseguita con successo"
|
67 |
"Import/Export","Importa/Esporta"
|
68 |
"In/Out","Dentro/Fuori"
|
69 |
"Input entity code is not equal to entity adapter code","Entità codice inserita non è uguale all\'entità adattatore"
|
70 |
+
"Invalid entity","Entity non valida"
|
71 |
+
"Invalid entity model","Entity Model Non valida"
|
72 |
"Invalid file format","Formato file non valido"
|
73 |
"Invalid parameters","Paramentri non validi"
|
74 |
"Invalid seek position","Posizione cercata non valida"
|
75 |
"Invalid value for '%s'","Valore non valido per '%s'"
|
76 |
+
"Invalid value for '%s' column","Valore non valido per '%s' colonna"
|
77 |
"No filter data provided","Nessun filtro dati fornito"
|
78 |
"No source specified","Nessuna sorgente specificata"
|
79 |
"No valid data sent","Nessun dato valido inviato"
|
82 |
"Not implemented yet","Non ancora implementato"
|
83 |
"Please fix errors and re-upload file","Correggi gli errori e ricarica il file"
|
84 |
"Please fix errors and re-upload file or simply press ""Import"" button to skip rows with errors","Per favore correggi gli errori e ricarica il file o semplicemente premi il bottone ""Importa"" per saltare le righe con errori"
|
85 |
+
"Products","Prodotti"
|
86 |
+
"Replace Existing Complex Data","Sostituisci Complex Data esistenti"
|
87 |
+
"Select File to Import","Seleziona file da importare"
|
88 |
+
"Skip","Salta"
|
89 |
"Some other FAQ","Altre FAQ"
|
90 |
"Source file moving failed","Spostamento fonte del file fallita"
|
91 |
"Source file path must be a string","Il percorso della fonte del file deve essere una stringa"
|
93 |
"Status","Status"
|
94 |
"System busy","Sistema occupato"
|
95 |
"There are no product types available for export","Non ci sono tipi di prodotti disponibili da esportare"
|
96 |
+
"There is no data for export","Non ci sono dati da esportare"
|
97 |
+
"To","A"
|
98 |
+
"Total size of uploadable files must not exceed %s","La dimensione totale per i file caricati non può superare %s"
|
99 |
+
"Unknown attribute filter type","Tipo filtro attributo sconosciuto"
|
100 |
+
"Uploaded file has no extension","Il file caricato non ha estensione"
|
101 |
+
"Validation finished successfully","Validazione completata correttamente"
|
102 |
+
"in rows","nelle righe"
|
103 |
+
"in rows:","nelle righe:"
|
104 |
"Total size of uploadable files must not exceed %s","La grandezza totale dei file caricabili non deve superare i %s"
|
105 |
"Uploaded file has no extension","I file caricati non hanno estensione"
|
106 |
"Validation Results","Convalida risultati"
|
app/locale/it_IT/Mage_Newsletter.csv
CHANGED
@@ -79,7 +79,7 @@
|
|
79 |
"Queue Newsletter...","Newsletter coda..."
|
80 |
"Queue Start","Inizio coda"
|
81 |
"Queue Subject","Soggetto coda"
|
82 |
-
"Recipients","
|
83 |
"Reset","Reset"
|
84 |
"Resume","Riprendi"
|
85 |
"Return HTML Version","Restituisci versione HTML"
|
79 |
"Queue Newsletter...","Newsletter coda..."
|
80 |
"Queue Start","Inizio coda"
|
81 |
"Queue Subject","Soggetto coda"
|
82 |
+
"Recipients","Destinatari"
|
83 |
"Reset","Reset"
|
84 |
"Resume","Riprendi"
|
85 |
"Return HTML Version","Restituisci versione HTML"
|
app/locale/it_IT/Mage_Rule.csv
CHANGED
@@ -1,19 +1,19 @@
|
|
1 |
-
"ALL","
|
2 |
-
"ANY","
|
3 |
"Add","Aggiungi"
|
4 |
"Apply","Applica"
|
5 |
-
"Conditions Combination","
|
6 |
"Customer Groups must be specified.","Gruppo clienti deve essere specificato."
|
7 |
"End Date must be greater than Start Date","La data finale deve essere maggiore di quella iniziale"
|
8 |
-
"FALSE","
|
9 |
-
"If %s of these conditions are %s:","Se %s
|
10 |
"Invalid discount amount.","Importo sconto non valido"
|
11 |
"Open Chooser","Apri selettore"
|
12 |
"Perform following actions","Esegui le seguenti azioni"
|
13 |
"Please choose a condition to add...","Seleziona una condizione da aggiungere..."
|
14 |
"Please choose an action to add...","Selezione un\'azione da aggiungere"
|
15 |
"Remove","Rimuovi"
|
16 |
-
"TRUE","
|
17 |
"There is no information about associated entity type """"%s"""".","Non ci sono informazioni sulle entity type associate """"%s""""."
|
18 |
"Websites must be specified.","I siti web devono essere specificati."
|
19 |
"by","da"
|
1 |
+
"ALL","TUTTE"
|
2 |
+
"ANY","ALMENO UNA DI"
|
3 |
"Add","Aggiungi"
|
4 |
"Apply","Applica"
|
5 |
+
"Conditions Combination","Combinazioni di condizioni"
|
6 |
"Customer Groups must be specified.","Gruppo clienti deve essere specificato."
|
7 |
"End Date must be greater than Start Date","La data finale deve essere maggiore di quella iniziale"
|
8 |
+
"FALSE","FALSE"
|
9 |
+
"If %s of these conditions are %s:","Se %s queste condizioni sono %s:"
|
10 |
"Invalid discount amount.","Importo sconto non valido"
|
11 |
"Open Chooser","Apri selettore"
|
12 |
"Perform following actions","Esegui le seguenti azioni"
|
13 |
"Please choose a condition to add...","Seleziona una condizione da aggiungere..."
|
14 |
"Please choose an action to add...","Selezione un\'azione da aggiungere"
|
15 |
"Remove","Rimuovi"
|
16 |
+
"TRUE","VERE"
|
17 |
"There is no information about associated entity type """"%s"""".","Non ci sono informazioni sulle entity type associate """"%s""""."
|
18 |
"Websites must be specified.","I siti web devono essere specificati."
|
19 |
"by","da"
|
app/locale/it_IT/Mage_Sales.csv
CHANGED
@@ -259,6 +259,7 @@
|
|
259 |
"Gift Message for this Order","Messaggio regalo per quest\'ordine"
|
260 |
"Gift Options","Opzioni regalo"
|
261 |
"Girth","Circonferenza"
|
|
|
262 |
"Grand Total","Totale complessivo"
|
263 |
"Grand Total to be Charged","Totale complessivo a carico"
|
264 |
"Guest","Ospite"
|
@@ -267,6 +268,7 @@
|
|
267 |
"Hold","Blocca"
|
268 |
"Hold action is not available.","Azione blocca non disponibile"
|
269 |
"Hold order","Blocca ordine"
|
|
|
270 |
"ID","ID"
|
271 |
"ID #","ID #"
|
272 |
"IPN """"Refunded"""". Refund issued by merchant. Registered notification about refunded amount of %s. Transaction ID: """"%s"""". Credit Memo has not been created. Please create offline Credit Memo.","IPN ""Rimborsato"". Rimborso emesso dal commerciante. Notifica registrata riguardante l\'importo rimborsato di %s. ID transazione: ""%s"". Nota di credito non è stata creata. Crea una nota di credito offline."
|
@@ -289,6 +291,7 @@
|
|
289 |
"Invalid qty to ship for item ""%s""","Qtà non valido per spedire l\'oggetto ""%s"""
|
290 |
"Invalid renderer model","Modello di intrepetazione non valido"
|
291 |
"Invalid request for adding product to quote.","Richiesta di aggiunta del prodotto al preventivo non valida"
|
|
|
292 |
"Invoice","Fattura"
|
293 |
"Invoice #","Fattura #"
|
294 |
"Invoice # ","Fattura # "
|
@@ -636,25 +639,25 @@
|
|
636 |
"Select All","Seleziona Tutto"
|
637 |
"Select from existing customer addresses:","Seleziona da un indirizzo esistente del cliente:"
|
638 |
"Selected option(s) or their combination is not currently available.","Le opzioni selezionate o la loro combinazione non è al momento disponibile."
|
639 |
-
"Send Credit Memo Comment Email Copy To","Invia Email commento nota di credito
|
640 |
-
"Send Credit Memo Comments Email Copy Method","
|
641 |
-
"Send Credit Memo Email Copy Method","Invia Email nota di credito
|
642 |
-
"Send Credit Memo Email Copy To","Invia Email nota di credito
|
643 |
"Send Email","Invia email"
|
644 |
-
"Send Invoice Comments Email Copy Method","
|
645 |
-
"Send Invoice Email Copy Method","
|
646 |
-
"Send Invoice Comment Email Copy To","Invia Email commento fattura
|
647 |
-
"Send Invoice Email Copy To","Invia email fattura
|
648 |
-
"Send Order Comments Email Copy Method","
|
649 |
-
"Send Order Comment Email Copy To","Invia email commento dell'ordine
|
650 |
"Send Order Email","Invia email ordine"
|
651 |
-
"Send Order Email Copy Method","
|
652 |
-
"Send Order Email Copy To","Invia email ordine
|
653 |
"Send Sales Emails","Invia email vendite"
|
654 |
-
"Send Shipment Comments Email Copy Method","
|
655 |
-
"Send Shipment Comment Email Copy To","Invia email commento di spedizione
|
656 |
-
"Send Shipment Email Copy Method","
|
657 |
-
"Send Shipment Email Copy To","Invia email spedizione
|
658 |
"Send Tracking Information","Invia informazioni di tracciamento"
|
659 |
"Send shipment info","Invia informazioni spedizione"
|
660 |
"Set order for existing transactions not allowed","Impostazioni ordine per transazioni esistenti non permesso"
|
259 |
"Gift Message for this Order","Messaggio regalo per quest\'ordine"
|
260 |
"Gift Options","Opzioni regalo"
|
261 |
"Girth","Circonferenza"
|
262 |
+
"Go to Home Page","Vai alla Home Page"
|
263 |
"Grand Total","Totale complessivo"
|
264 |
"Grand Total to be Charged","Totale complessivo a carico"
|
265 |
"Guest","Ospite"
|
268 |
"Hold","Blocca"
|
269 |
"Hold action is not available.","Azione blocca non disponibile"
|
270 |
"Hold order","Blocca ordine"
|
271 |
+
"Home","Home"
|
272 |
"ID","ID"
|
273 |
"ID #","ID #"
|
274 |
"IPN """"Refunded"""". Refund issued by merchant. Registered notification about refunded amount of %s. Transaction ID: """"%s"""". Credit Memo has not been created. Please create offline Credit Memo.","IPN ""Rimborsato"". Rimborso emesso dal commerciante. Notifica registrata riguardante l\'importo rimborsato di %s. ID transazione: ""%s"". Nota di credito non è stata creata. Crea una nota di credito offline."
|
291 |
"Invalid qty to ship for item ""%s""","Qtà non valido per spedire l\'oggetto ""%s"""
|
292 |
"Invalid renderer model","Modello di intrepetazione non valido"
|
293 |
"Invalid request for adding product to quote.","Richiesta di aggiunta del prodotto al preventivo non valida"
|
294 |
+
"Invalid value(s) for Qty to Ship","Valori non validi per Quantità per spedizione"
|
295 |
"Invoice","Fattura"
|
296 |
"Invoice #","Fattura #"
|
297 |
"Invoice # ","Fattura # "
|
639 |
"Select All","Seleziona Tutto"
|
640 |
"Select from existing customer addresses:","Seleziona da un indirizzo esistente del cliente:"
|
641 |
"Selected option(s) or their combination is not currently available.","Le opzioni selezionate o la loro combinazione non è al momento disponibile."
|
642 |
+
"Send Credit Memo Comment Email Copy To","Invia Email Copia commento nota di credito a"
|
643 |
+
"Send Credit Memo Comments Email Copy Method","Metodo di Invio Copia email commenti nota di credito"
|
644 |
+
"Send Credit Memo Email Copy Method","Invia Copia Email nota di credito a"
|
645 |
+
"Send Credit Memo Email Copy To","Invia Copia Email nota di credito a"
|
646 |
"Send Email","Invia email"
|
647 |
+
"Send Invoice Comments Email Copy Method","Metodo di Invio Copia Email commenti fattura"
|
648 |
+
"Send Invoice Email Copy Method","Metodo di Invio Copia Email fattura"
|
649 |
+
"Send Invoice Comment Email Copy To","Invia Copia Email commento fattura a"
|
650 |
+
"Send Invoice Email Copy To","Invia Copia email fattura a"
|
651 |
+
"Send Order Comments Email Copy Method","Metodo di Invio Copia email commenti dell'ordine"
|
652 |
+
"Send Order Comment Email Copy To","Invia Copia email commento dell'ordine a"
|
653 |
"Send Order Email","Invia email ordine"
|
654 |
+
"Send Order Email Copy Method","Metodo di Invio Copia email ordine "
|
655 |
+
"Send Order Email Copy To","Invia Copia email ordine a"
|
656 |
"Send Sales Emails","Invia email vendite"
|
657 |
+
"Send Shipment Comments Email Copy Method","Metodo di Invio Copia email commenti di spedizione"
|
658 |
+
"Send Shipment Comment Email Copy To","Invia Copia email commento di spedizione a"
|
659 |
+
"Send Shipment Email Copy Method","Metodo di Invio Copia email spedizione "
|
660 |
+
"Send Shipment Email Copy To","Invia Copia email spedizione a"
|
661 |
"Send Tracking Information","Invia informazioni di tracciamento"
|
662 |
"Send shipment info","Invia informazioni spedizione"
|
663 |
"Set order for existing transactions not allowed","Impostazioni ordine per transazioni esistenti non permesso"
|
app/locale/it_IT/Mage_Sendfriend.csv
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
"Please define a correct Cookie instance.","Per favore definisci un corretto Cookie di esempio ."
|
24 |
"Please define a correct Product instance.","Per favore definisci un corretto prodotto di esempio ."
|
25 |
"Please define the correct Sender information.","Per favore definisci le informazioni del mittente corrette"
|
26 |
-
"Recipient:","
|
27 |
"Remove Email","Rimuovi email"
|
28 |
"Select Email Template","Seleziona template email"
|
29 |
"Send Email","Invia Email "
|
23 |
"Please define a correct Cookie instance.","Per favore definisci un corretto Cookie di esempio ."
|
24 |
"Please define a correct Product instance.","Per favore definisci un corretto prodotto di esempio ."
|
25 |
"Please define the correct Sender information.","Per favore definisci le informazioni del mittente corrette"
|
26 |
+
"Recipient:","Destinatario:"
|
27 |
"Remove Email","Rimuovi email"
|
28 |
"Select Email Template","Seleziona template email"
|
29 |
"Send Email","Invia Email "
|
app/locale/it_IT/Mage_Tax.csv
CHANGED
@@ -147,6 +147,7 @@
|
|
147 |
"Total","Totale"
|
148 |
"Unit Price","Prezzo unitario"
|
149 |
"Warning tax configuration can result in rounding errors","Avviso Configurazione Tasse può risultate in errore di arrotondamento"
|
|
|
150 |
"Warning tax discount configuration might result in different discounts than a customer might expect","Attenzione configurazione tassa sconto potrebbe comportare diversi sconti che un cliente si aspetta"
|
151 |
"Whether catalog prices entered by admin include tax.","Indica se i prezzi sono comprensivi di tasse o meno"
|
152 |
"Whether shipping amounts entered by admin or obtained from gateways include tax.","Se i costi di spedizione introdotto dall\'amministratore sono ottenenuti dal gateways includono le tasse."
|
147 |
"Total","Totale"
|
148 |
"Unit Price","Prezzo unitario"
|
149 |
"Warning tax configuration can result in rounding errors","Avviso Configurazione Tasse può risultate in errore di arrotondamento"
|
150 |
+
"Warning tax configuration can result in unexpected FPT prices on applicable devices","Avviso Configurazione Tasse può risultare con un FTP prezzi inaspettato ai device applicabili"
|
151 |
"Warning tax discount configuration might result in different discounts than a customer might expect","Attenzione configurazione tassa sconto potrebbe comportare diversi sconti che un cliente si aspetta"
|
152 |
"Whether catalog prices entered by admin include tax.","Indica se i prezzi sono comprensivi di tasse o meno"
|
153 |
"Whether shipping amounts entered by admin or obtained from gateways include tax.","Se i costi di spedizione introdotto dall\'amministratore sono ottenenuti dal gateways includono le tasse."
|
app/locale/it_IT/Mage_Weee.csv
CHANGED
@@ -8,12 +8,16 @@
|
|
8 |
"Enable FPT","Attiva FPT"
|
9 |
"Excluding FPT","Excluding FPT"
|
10 |
"Excluding FPT, FPT description, final price","Excluding FPT, FPT description, final price"
|
|
|
11 |
"Fixed Product Tax","Tassa fissa prodotto"
|
12 |
"Fixed Product Taxes","Fissa tasse prodotto"
|
13 |
"Include FPT In Subtotal","Includi FPT nel subtotola"
|
14 |
"Including FPT and FPT description","Includi FPT e FPT descrizione"
|
15 |
-
"Including FPT and FPT description [incl. FPT VAT]","Includi descrizione FPT e FPT [incl. FPT
|
16 |
"Including FPT only","Includi solo FPT"
|
|
|
|
|
|
|
17 |
"Total","Totale"
|
18 |
"Total Incl. Tax","Totale incl. Tasse"
|
19 |
"Total excl. tax","Totale escl. Tasse"
|
8 |
"Enable FPT","Attiva FPT"
|
9 |
"Excluding FPT","Excluding FPT"
|
10 |
"Excluding FPT, FPT description, final price","Excluding FPT, FPT description, final price"
|
11 |
+
"FPT Tax Configuration","Configurazione Tasse FPT"
|
12 |
"Fixed Product Tax","Tassa fissa prodotto"
|
13 |
"Fixed Product Taxes","Fissa tasse prodotto"
|
14 |
"Include FPT In Subtotal","Includi FPT nel subtotola"
|
15 |
"Including FPT and FPT description","Includi FPT e FPT descrizione"
|
16 |
+
"Including FPT and FPT description [incl. FPT VAT]","Includi descrizione FPT e FPT [incl. FPT IVA]"
|
17 |
"Including FPT only","Includi solo FPT"
|
18 |
+
"Loaded and Displayed with Tax","Caricato e Mostrato con Tasse
|
19 |
+
"Not Taxed","Non Tassato"
|
20 |
+
"Taxed","Tassato"
|
21 |
"Total","Totale"
|
22 |
"Total Incl. Tax","Totale incl. Tasse"
|
23 |
"Total excl. tax","Totale escl. Tasse"
|
app/locale/it_IT/template/.DS_Store
ADDED
Binary file
|
app/locale/it_IT/template/email/.DS_Store
ADDED
Binary file
|
app/locale/it_IT/template/email/payment_failed.html
CHANGED
@@ -1,7 +1,4 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
Use vars: {{var var_name}}
|
4 |
-
*}<!--@subject Promemoria operazione di pagamento non riuscita @-->
|
5 |
<!--@vars
|
6 |
{"var reason":"Transaction Failed Reason",
|
7 |
"var checkoutType":"Checkout Type",
|
1 |
+
<!--@subject Promemoria operazione di pagamento non riuscita @-->
|
|
|
|
|
|
|
2 |
<!--@vars
|
3 |
{"var reason":"Transaction Failed Reason",
|
4 |
"var checkoutType":"Checkout Type",
|
app/locale/it_IT/template/email/product_share.html
CHANGED
@@ -1,17 +1,4 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
In questo template sono disponibili le variabili:
|
4 |
-
- nome Nome destinatario
|
5 |
-
- email Indirizzo email destinatario
|
6 |
-
- product_name Nome prodotto
|
7 |
-
- product_url Url per il prodotto
|
8 |
-
- product_image Url per l'immagine piccola del prodotto (75 px)
|
9 |
-
- messaggio Mittente messaggio personalizzato
|
10 |
-
- sender_name Nome mittente
|
11 |
-
- sender_email Email mittente
|
12 |
-
|
13 |
-
Utilizza variabili: {{var var_name}}
|
14 |
-
*}<!--@subject Benvenuto, {{var name}} @-->
|
15 |
<!--@vars
|
16 |
{"htmlescape var=$name":"Recipient Name",
|
17 |
"var product_url":"Url for Product",
|
1 |
+
<!--@subject Benvenuto, {{var name}} @-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<!--@vars
|
3 |
{"htmlescape var=$name":"Recipient Name",
|
4 |
"var product_url":"Url for Product",
|
app/locale/it_IT/template/email/sales/.DS_Store
ADDED
Binary file
|
app/locale/it_IT/template/email/sales/order_new.html
CHANGED
@@ -51,7 +51,7 @@ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif;
|
|
51 |
<table cellspacing="0" cellpadding="0" border="0" width="650">
|
52 |
<thead>
|
53 |
<tr>
|
54 |
-
<th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Informazioni di
|
55 |
<th width="10"></th>
|
56 |
<th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Metodo di pagamento:</th>
|
57 |
</tr>
|
51 |
<table cellspacing="0" cellpadding="0" border="0" width="650">
|
52 |
<thead>
|
53 |
<tr>
|
54 |
+
<th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Informazioni di fatturazione:</th>
|
55 |
<th width="10"></th>
|
56 |
<th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Metodo di pagamento:</th>
|
57 |
</tr>
|
app/locale/it_IT/template/email/token.html
CHANGED
@@ -1,12 +1,4 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
Available vars in this template:
|
4 |
-
- $userName User name
|
5 |
-
- $applicationName Application name
|
6 |
-
- $status Token new status
|
7 |
-
|
8 |
-
Use vars: {{var var_name}}
|
9 |
-
*}<!--@subject Benvenuto, {{var name}} @-->
|
10 |
<!--@vars
|
11 |
{"htmlescape var=$userName":"User name",
|
12 |
"var $applicationName":"Application name",
|
1 |
+
<!--@subject Benvenuto, {{var name}} @-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<!--@vars
|
3 |
{"htmlescape var=$userName":"User name",
|
4 |
"var $applicationName":"Application name",
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Locale_Mage_community_it_IT</name>
|
4 |
-
<version>1.8.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/academic.php">AFL</license>
|
7 |
<channel>community</channel>
|
@@ -14,11 +14,18 @@
|
|
14 |
<p>La lista completa delle release delle traduzioni le potete trovare <a href="http://ecommerce-italiano.it/release-traduzioni-magento/" title="traduzioni">a questo indirizzo.</a></p>
|
15 |

|
16 |
<p>Eventuali errori, bug, devono essere segnalati sul forum nel <a href="http://www.magentocommerce.com/boards/viewthread/762/" title="Topic Ufficiale traduzione">topic ufficiale</a> oppure nel post del <a href="http://ecommerce-italiano.it/release-traduzioni-magento/" title="traduzione italiana magento">blog Italiano</a> da cui avete preso la versione di traduzione.</p></description>
|
17 |
-
<notes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
<authors><author><name>Antonio Carboni</name><user>antoniocarboni</user><email>magento@antoniocarboni.com</email></author><author><name>Martino Fenu</name><user>Martino_Fenu</user><email>89martino@gmail.com</email></author></authors>
|
19 |
-
<date>2013-
|
20 |
-
<time>
|
21 |
-
<contents><target name="magelocale"><dir name="it_IT"><file name="Mage_AdminNotification.csv" hash="acc0f8b4b8ec0991251dfa19caf637da"/><file name="Mage_Adminhtml.csv" hash="
|
22 |
<compatible/>
|
23 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
24 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Locale_Mage_community_it_IT</name>
|
4 |
+
<version>1.8.1.0.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/academic.php">AFL</license>
|
7 |
<channel>community</channel>
|
14 |
<p>La lista completa delle release delle traduzioni le potete trovare <a href="http://ecommerce-italiano.it/release-traduzioni-magento/" title="traduzioni">a questo indirizzo.</a></p>
|
15 |

|
16 |
<p>Eventuali errori, bug, devono essere segnalati sul forum nel <a href="http://www.magentocommerce.com/boards/viewthread/762/" title="Topic Ufficiale traduzione">topic ufficiale</a> oppure nel post del <a href="http://ecommerce-italiano.it/release-traduzioni-magento/" title="traduzione italiana magento">blog Italiano</a> da cui avete preso la versione di traduzione.</p></description>
|
17 |
+
<notes>- Added new translation strings for 1.8.1.0.
|
18 |
+
- Fixed some bugs 
|
19 |
+
------------
|
20 |
+

|
21 |
+
- Aggiunte nuove stringhe di traduzione per la v. 1.8.1.0
|
22 |
+
- Corretti diversi bug e sviste di traduzione
|
23 |
+

|
24 |
+
</notes>
|
25 |
<authors><author><name>Antonio Carboni</name><user>antoniocarboni</user><email>magento@antoniocarboni.com</email></author><author><name>Martino Fenu</name><user>Martino_Fenu</user><email>89martino@gmail.com</email></author></authors>
|
26 |
+
<date>2013-12-16</date>
|
27 |
+
<time>12:10:57</time>
|
28 |
+
<contents><target name="magelocale"><dir name="it_IT"><file name="Mage_AdminNotification.csv" hash="acc0f8b4b8ec0991251dfa19caf637da"/><file name="Mage_Adminhtml.csv" hash="a691eabe51b83cb4b5f32e929d5aa90a"/><file name="Mage_Api.csv" hash="657e3b01938452139d7eaa6dcd394c10"/><file name="Mage_Api2.csv" hash="9c458f4c7884281b434f8393de05bba6"/><file name="Mage_Authorizenet.csv" hash="e039c1fc40895c1bcf14bc1a5e5cfe2d"/><file name="Mage_Backup.csv" hash="85c4ae0d44689f34b6e29688f2ec3de3"/><file name="Mage_Bundle.csv" hash="93375500d09f774a1e9c4c90d909eeb8"/><file name="Mage_Captcha.csv" hash="09c882f0cbef4fc360c3e0a5d166e4c5"/><file name="Mage_Catalog.csv" hash="54270bbdd15f019e91b56f014955499d"/><file name="Mage_CatalogInventory.csv" hash="cfc7132e71df27489f336e74ba03f1c2"/><file name="Mage_CatalogRule.csv" hash="5f560403353c360583c73af54945af76"/><file name="Mage_CatalogSearch.csv" hash="4278640068a5a5759acbb5c0af4bc315"/><file name="Mage_Centinel.csv" hash="d37d754cda83c57ef24a215bdb6254ae"/><file name="Mage_Checkout.csv" hash="b5c90ae695b20fbc2a72c38b05194c7f"/><file name="Mage_Cms.csv" hash="09d0d1c137bd72cd66253d6dd9399737"/><file name="Mage_Compiler.csv" hash="e734bb47db89f1c221c3306b20934af8"/><file name="Mage_Connect.csv" hash="f42f806e8f056b3bff5caabd5f232cd2"/><file name="Mage_Contacts.csv" hash="4ac6553c525f202768b1532ecd3d995e"/><file name="Mage_Core.csv" hash="78bb7201d6d2739220133f984cbb316f"/><file name="Mage_Cron.csv" hash="b6c34ee5cc060c02fb7197a7758dad17"/><file name="Mage_CurrencySymbol.csv" hash="6a2ba5ce3f6e3392a0fc42aab4ceed13"/><file name="Mage_Customer.csv" hash="33be3729b6a46249ccef9ac2f8c92605"/><file name="Mage_Dataflow.csv" hash="db61e4c3ddd66c65ed02fb68a7d1f2ef"/><file name="Mage_Directory.csv" hash="3f788c9ad510f35b2240492e38e1a029"/><file name="Mage_Downloadable.csv" hash="7cf1c95e9769d97669a61105f390965b"/><file name="Mage_Eav.csv" hash="1073c66acdd39bd76bc99ded1e982343"/><file name="Mage_GiftMessage.csv" hash="ced2f87889cd9f286b41b8915c3fca9c"/><file name="Mage_GoogleAnalytics.csv" hash="067f8a7fbaa962304b515a87c94d83dc"/><file name="Mage_GoogleBase.csv" hash="e8d32803302c51f8b5b73ee36417b58f"/><file name="Mage_GoogleCheckout.csv" hash="34d3cb90bf002717650a47604f4bb8d1"/><file name="Mage_GoogleOptimizer.csv" hash="8e50037def10c6a8603fffde271c14b0"/><file name="Mage_ImportExport.csv" hash="d8962363de31654e969b446c1e720e06"/><file name="Mage_Index.csv" hash="d367524b976d00ed5bc6f99a4c63c9a0"/><file name="Mage_Install.csv" hash="98ca45672556807a4040d394579894b6"/><file name="Mage_Log.csv" hash="3ca3a3a02f94b6ae98d1d9b89609d516"/><file name="Mage_Media.csv" hash="c02f4e41eef0c4c5396a658bc829d857"/><file name="Mage_Newsletter.csv" hash="c6e751ad723990855c84cc11b9baa132"/><file name="Mage_Oauth.csv" hash="d705486df452db555c895bbf6ee4dd8d"/><file name="Mage_Page.csv" hash="fbbc2167b734b7ae226ad030dbead286"/><file name="Mage_PageCache.csv" hash="d980eb4af353d4d74f661aa4a7b41cde"/><file name="Mage_Paygate.csv" hash="18b1f45e18b60fd78b924e3884ef578b"/><file name="Mage_Payment.csv" hash="e026d31f1bebec713ce6eb008992cbec"/><file name="Mage_Paypal.csv" hash="958886aaf391d035520f2f38c0a0ddb2"/><file name="Mage_PaypalUk.csv" hash="8701be6ae0466ac4188e7111ef9224b4"/><file name="Mage_Persistent.csv" hash="82ac8d8cc2899aa70102a4f2bdcc2aa5"/><file name="Mage_Poll.csv" hash="c4f0429a9c7852f382ef8cd1664ecd2e"/><file name="Mage_ProductAlert.csv" hash="8e028a4c7befe76514bbf47bfd477151"/><file name="Mage_Rating.csv" hash="69da03432146dd5496a570341dea7804"/><file name="Mage_Reports.csv" hash="6d4d6e02efc5b2ba7f4cffd99f2f4caa"/><file name="Mage_Review.csv" hash="ac4e008a228dda3189008d3953eba090"/><file name="Mage_Rss.csv" hash="a8e96c7f012f6e11bb2eebefb6c7cd08"/><file name="Mage_Rule.csv" hash="bf5f0046ec7d6220207f36f24ef32820"/><file name="Mage_Sales.csv" hash="ab10b32c7f524fc9e244f65787f5310e"/><file name="Mage_SalesRule.csv" hash="e9ea117f5a6d2acaf92092ae95e05647"/><file name="Mage_Sendfriend.csv" hash="d558fe67ba4a75f4f1f62dad5d8e4a05"/><file name="Mage_Shipping.csv" hash="3d66e004bc6b340343691d3061597c68"/><file name="Mage_Sitemap.csv" hash="38d71ddc21975c2647f66d4c58a236b5"/><file name="Mage_Strikeiron.csv" hash="216df2f0d812a9cdbbc39dc313db9f2f"/><file name="Mage_Tag.csv" hash="9aeb9ac3ba3568ff096c5b8fccd80e17"/><file name="Mage_Tax.csv" hash="2cd7008880d73280203a48cf11808e5a"/><file name="Mage_Usa.csv" hash="9c5cc09ee9025e192a8141873d4a4c0d"/><file name="Mage_Weee.csv" hash="5340783209bc937dee55ec2ba8d8ac34"/><file name="Mage_Widget.csv" hash="226583d123579437dfa2b83de3c508b9"/><file name="Mage_Wishlist.csv" hash="94a6aaf6164c6bb0d396032e6910f289"/><file name="Mage_XmlConnect.csv" hash="81fdce443c51cddfe557aed4a2267642"/><file name="Phoenix_BankPayment.csv" hash="e8d9f83ac98959d1fd6c2847594011cf"/><file name="Phoenix_Moneybookers.csv" hash="f8d17c9bddc12b5de777f0a2c2c6550e"/><dir name="template"><dir name="email"><file name="account_new.html" hash="e8281e5987d609e34efd93d9d437dc51"/><file name="account_new_confirmation.html" hash="ab4924be95881b476dbd3959d9f5aa53"/><file name="account_new_confirmed.html" hash="0f9fdc8ae804bedec423eed91cb77e15"/><file name="account_password_reset_confirmation.html" hash="1e01d40fa61350d14ddb9ce4688eab88"/><file name="admin_password_new.html" hash="f67912166e7a0efa1a88e22a13d43d99"/><file name="admin_password_reset_confirmation.html" hash="071d89dc8e810c4dd03d6ad68767a0ec"/><file name="contact_form.html" hash="d42cc48d8c5a754118745d8cc1f22679"/><file name="currency_update_warning.html" hash="1229514b40558d0f2aa76a634a482aa7"/><file name="log_clean_warning.html" hash="205461b8443b5287f64ec97b4ecea4f5"/><file name="moneybookers_activateemail.html" hash="16b99204897a583f8004371ccf767dc7"/><file name="newsletter_subscr_confirm.html" hash="10c7d5fc185712d35cb85cd362a9d1b9"/><file name="newsletter_subscr_success.html" hash="1a00ccd65dc44c81b7559686f0e2e15d"/><file name="newsletter_unsub_success.html" hash="127dadd8e1f23908264cb78f01ee94f2"/><file name="password_new.html" hash="0507bc5edf818b47a851d5b09c2e087d"/><file name="payment_failed.html" hash="d44028fc64056b7d063c08bae17c8440"/><file name="product_alert_cron_error.html" hash="9e922f46092441315939d48b489dfdc7"/><file name="product_price_alert.html" hash="ecc0308e5d84902f8a1da7291c04d0b2"/><file name="product_share.html" hash="4c0e14d69676ce0119de49e2df2362d6"/><file name="product_stock_alert.html" hash="096308c34e48dafb12acb52ec2c407f1"/><dir name="sales"><file name="creditmemo_new.html" hash="e371c189a56256858156af744d487115"/><file name="creditmemo_new_guest.html" hash="cff758dfddee40fde1d3a503b6cfdfe3"/><file name="creditmemo_update.html" hash="d229bf293eb5fae7ff666e458bf90592"/><file name="creditmemo_update_guest.html" hash="d475146747744a0008f017b28b49e077"/><file name="invoice_new.html" hash="8b5a4ed682121c58b664f852e10c6673"/><file name="invoice_new_guest.html" hash="3c232766be843d369b0c11a07cccf6fb"/><file name="invoice_update.html" hash="7acfec0b03db10fc82137ce5eff2e66d"/><file name="invoice_update_guest.html" hash="8935ca7d7758a3dfb51b1c50cf451638"/><file name="order_new.html" hash="979bb03f275ed9a99005d157346b9178"/><file name="order_new_guest.html" hash="86bbe86a3d127aeebcd024cf0112baee"/><file name="order_update.html" hash="8e0ce758169a0c65cbfc3e950de9d5f1"/><file name="order_update_guest.html" hash="cd7a95c1d9da79d0904332fa1554ac2c"/><file name="shipment_new.html" hash="ff493798810b4f5999755a734c5697c8"/><file name="shipment_new_guest.html" hash="0bd1028c2dc814458b01fc521379d56b"/><file name="shipment_update.html" hash="e17ef2159b304433ce4c46b95555f41e"/><file name="shipment_update_guest.html" hash="2a090ff9fce346e9b4007e07e4a3f9ef"/><file name=".DS_Store" hash="b61893d9bfbffeb3db3961b4072b7978"/></dir><file name="sitemap_generate_warning.html" hash="c605b3f6b7da9d471a60939d36063217"/><file name="token.html" hash="52acd1a8160439c833349d1ab60fd14f"/><file name="wishlist_share.html" hash="ee77a15ad1e8adaa736be09e2fd34645"/><file name=".DS_Store" hash="03f166ad1ebeb20c1d6ea6c035886144"/></dir><file name=".DS_Store" hash="e5b55ec9634013deece9def2e1f13756"/></dir><file name="translate.csv" hash="77caafcf214c345d07438c8b12195e5b"/><file name=".DS_Store" hash="3d5bba7d71f5d4796714cff99f6da659"/></dir></target><target name="magecommunity"><dir name="ItalianLocale"><dir name="Info"><dir name="Block"><dir name="Adminhtml"><file name="Info.php" hash="c2f5b58f19ac54c94d95a82584b30bd1"/><file name=".DS_Store" hash="54e02da1e49c567a08cdebe9027bcea2"/></dir><file name=".DS_Store" hash="475922c1a89d74c95ba88d34f7f48c78"/></dir><dir name="Helper"><file name="Data.php" hash="9f158e8fc10f3a55dfc98d21660edf8c"/><file name=".DS_Store" hash="9b599b255507a59ccf001cc62edf9d2f"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a8cec129006a991d30413fc59501d7a2"/><file name="config.xml" hash="7ad2e326fe3cd44245b43349b782c723"/><file name="system.xml" hash="85b7c1165c61160aa9d0540587326c4e"/><file name=".DS_Store" hash="9ba8bf979a0f764f938b12308589b5e5"/></dir><file name=".DS_Store" hash="fdb127cbd3cb5a18df6f055ce2f0eb08"/></dir><file name=".DS_Store" hash="7d470004286572e16f76e395c7d6a353"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="italianlocale"><file name="info.phtml" hash="66184c016761b46eee1eabcfaa2710c6"/><file name=".DS_Store" hash="50d787d3df5cd3637212f18e52538907"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Italian_locale.xml" hash="fe1fadab0a43ab357fec097a6ddfbb68"/></dir></target></contents>
|
29 |
<compatible/>
|
30 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
31 |
</package>
|