diff --git a/admin-dev/ajax.php b/admin-dev/ajax.php index f97376757..28f2e6d2b 100644 --- a/admin-dev/ajax.php +++ b/admin-dev/ajax.php @@ -842,7 +842,7 @@ if (Tools::isSubmit('ajaxAttributesPositions')) $way = (int)Tools::getValue('way'); $id_attribute = (int)Tools::getValue('id_attribute'); $id_attribute_group = (int)Tools::getValue('id_attribute_group'); - $positions = Tools::getValue('attribute_'.(int)Tools::getValue('id_attribute_group')); + $positions = Tools::getValue('attribute'); if (is_array($positions)) foreach ($positions as $position => $value) diff --git a/admin-dev/themes/template/attributes/list_content.tpl b/admin-dev/themes/template/attributes/list_content.tpl new file mode 100644 index 000000000..71d3eedb3 --- /dev/null +++ b/admin-dev/themes/template/attributes/list_content.tpl @@ -0,0 +1,133 @@ +{* +* 2007-2011 PrestaShop +* +* NOTICE OF LICENSE +* +* This source file is subject to the Academic Free License (AFL 3.0) +* that is bundled with this package in the file LICENSE.txt. +* It is also available through the world-wide-web at this URL: +* http://opensource.org/licenses/afl-3.0.php +* If you did not receive a copy of the license and are unable to +* obtain it through the world-wide-web, please send an email +* to license@prestashop.com so we can send you a copy immediately. +* +* DISCLAIMER +* +* Do not edit or add to this file if you wish to upgrade PrestaShop to newer +* versions in the future. If you wish to customize PrestaShop for your +* needs please refer to http://www.prestashop.com for more information. +* +* @author PrestaShop SA +* @copyright 2007-2011 PrestaShop SA +* @version Release: $Revision: 9608 $ +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*} + +{if count($list)} +{foreach $list AS $index => $tr} + + + {if {$has_bulk_actions}} + {if isset($list_skip_actions.delete)} + {if !in_array($tr.$identifier, $list_skip_actions.delete)} + + {/if} + {else} + + {/if} + {/if} + + {foreach $fields_display AS $key => $params} + + {else} + > + {/if} + {if isset($params.prefix)}{$params.prefix}{/if} + {if isset($params.color) && isset($tr[$params.color])} + + {/if} + {if isset($params.active)} + {$tr.$key} + {elseif isset($params.activeVisu)} + {if $tr.$key}{l s='Enabled'}{else}{l s='Disabled'}{/if} + {elseif isset($params.position)} + {if $order_by == 'position' && $order_way != 'DESC'} + + {l s='Down'} + + + + {l s='Up'} + + {else} + {$tr.$key.position + 1} + {/if} + {elseif isset($params.image)} + {$tr.$key} + {elseif (isset($params.icon))} + {$tr[$key]} + {elseif isset($params.price)} + {$tr.$key} + {elseif isset($params.float)} + {$tr.$key} + {elseif isset($params.type) && $params.type == 'date'} + {$tr.$key} + {elseif isset($params.type) && $params.type == 'datetime'} + {$tr.$key} + {* If type is 'editable', an input is created *} + {elseif isset($params.type) && $params.type == 'editable' && isset($tr.id)} + + {elseif isset($params.callback)} + {$tr.$key} + {elseif isset($tr.$key) && $key == 'color'} +
+ {elseif isset($tr.$key)} + {$tr.$key|escape:'htmlall':'UTF-8'} + {else} + -- + {/if} + {if isset($params.suffix)}{$params.suffix}{/if} + {if isset($params.color) && isset($tr.color)} +
+ {/if} + + {/foreach} + + {if $shop_link_type} + + {if isset($tr.shop_short_name)} + {$tr.shop_short_name} + {else} + {$tr.shop_name} + {/if} + {/if} + {if $has_actions} + + {foreach $actions AS $action} + {if isset($tr.$action)} + {$tr.$action} + {/if} + {/foreach} + + {/if} + +{/foreach} +{else} + {l s='No items found'} +{/if} + diff --git a/classes/Attribute.php b/classes/Attribute.php index ccbc60622..b71fb2bcd 100644 --- a/classes/Attribute.php +++ b/classes/Attribute.php @@ -286,7 +286,14 @@ class AttributeCore extends ObjectModel if (!isset($moved_attribute) || !isset($position)) return false; - +p(' + UPDATE `'._DB_PREFIX_.'attribute` + SET `position`= `position` '.($way ? '- 1' : '+ 1').' + WHERE `position` + '.($way + ? '> '.(int)$moved_attribute['position'].' AND `position` <= '.(int)$position + : '< '.(int)$moved_attribute['position'].' AND `position` >= '.(int)$position).' + AND `id_attribute_group`='.(int)$moved_attribute['id_attribute_group']); // < and > statements rather than BETWEEN operator // since BETWEEN is treated differently according to databases return (Db::getInstance()->execute(' diff --git a/classes/ObjectModel.php b/classes/ObjectModel.php index 9380368aa..2a6d0bfb5 100644 --- a/classes/ObjectModel.php +++ b/classes/ObjectModel.php @@ -371,7 +371,7 @@ abstract class ObjectModelCore $assos = GroupShop::getAssoTables(); if (isset($assos[$this->table]) && $assos[$this->table]['type'] == 'group_shop') - Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.$this->table.'group_shop` WHERE `'.$this->identifier.'`='.(int)$this->id); + Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.$this->table.'_group_shop` WHERE `'.$this->identifier.'`='.(int)$this->id); /* Hook */ Hook::exec('actionObject'.get_class($this).'DeleteAfter'); diff --git a/controllers/admin/AdminAttributesGroupsController.php b/controllers/admin/AdminAttributesGroupsController.php index 72aa28c09..1555bda58 100644 --- a/controllers/admin/AdminAttributesGroupsController.php +++ b/controllers/admin/AdminAttributesGroupsController.php @@ -129,9 +129,11 @@ class AdminAttributesGroupsControllerCore extends AdminController // get list and force no limit clause in the request $this->getList($this->context->language->id); + // Render list $helper = new HelperList(); $helper->actions = $this->actions; + $helper->override_folder = $this->tpl_folder; $helper->no_link = true; $helper->shopLinkType = ''; $helper->identifier = $this->identifier; diff --git a/install-dev/php/add_attribute_position.php b/install-dev/php/add_attribute_position.php index 1b21c272c..b1d6c3d53 100755 --- a/install-dev/php/add_attribute_position.php +++ b/install-dev/php/add_attribute_position.php @@ -28,9 +28,9 @@ function add_attribute_position() { $groups = Db::getInstance()->executeS(' - SELECT `id_attribute_group` + SELECT DISTINCT `id_attribute_group` FROM `'._DB_PREFIX_.'attribute`'); - if (sizeof($groups) && is_array($groups)) + if (count($groups) && is_array($groups)) foreach ($groups as $group) { $attributes = Db::getInstance()->executeS(' @@ -38,7 +38,7 @@ function add_attribute_position() FROM `'._DB_PREFIX_.'attribute` WHERE `id_attribute_group` = '. (int)($group['id_attribute_group'])); $i = 0; - if (sizeof($attributes) && is_array($attributes)) + if (count($attributes) && is_array($attributes)) foreach ($attributes as $attribute) { Db::getInstance()->execute(' diff --git a/install-dev/sql/db_settings_extends.sql b/install-dev/sql/db_settings_extends.sql index 47235c3d9..95f4c4146 100644 --- a/install-dev/sql/db_settings_extends.sql +++ b/install-dev/sql/db_settings_extends.sql @@ -316,8 +316,8 @@ INSERT INTO `PREFIX_scene_products` (`id_scene`, `id_product`, `x_axis`, `y_axis (1, 1, 38, 12, 30, 170),(1, 1, 76, 14, 41, 169),(1, 1, 123, 13, 49, 169); INSERT INTO `PREFIX_attribute` (`id_attribute`, `id_attribute_group`, `position`) VALUES (1, 1, 0),(2, 1, 1),(8, 1, 2),(9, 1, 3),(10, 3, 0),(11, 3, 1),(12, 1, 4),(13, 1, 5); -INSERT INTO `PREFIX_attribute` (`id_attribute`, `id_attribute_group`, `color`, `position`) VALUES (3, 2, '#D2D6D5', 0),(4, 2, '#008CB7', 1),(5, 2, '#F3349E', 3),(6, 2, '#93D52D', 4), -(7, 2, '#FD9812', 5),(15, 1, '', 6),(16, 1, '', 7),(17, 1, '', 8),(18, 2, '#7800F0', 6),(19, 2, '#F6EF04', 7),(20, 2, '#F60409', 8),(14, 2, '#000000', 9); +INSERT INTO `PREFIX_attribute` (`id_attribute`, `id_attribute_group`, `color`, `position`) VALUES (3, 2, '#D2D6D5', 0),(4, 2, '#008CB7', 1),(5, 2, '#F3349E', 2),(6, 2, '#93D52D', 3), +(7, 2, '#FD9812', 4),(15, 1, '', 6),(16, 1, '', 7),(17, 1, '', 8),(18, 2, '#7800F0', 5),(19, 2, '#F6EF04', 6),(20, 2, '#F60409', 7),(14, 2, '#000000', 8); INSERT INTO `PREFIX_attribute_group_shop` (`id_attribute`, `id_group_shop`) (SELECT `id_attribute`, 1 FROM `PREFIX_attribute`); diff --git a/translations/fr/admin.php b/translations/fr/admin.php index 950f915d8..f64a70f1e 100644 --- a/translations/fr/admin.php +++ b/translations/fr/admin.php @@ -162,6 +162,31 @@ $_LANGADM['AdminAliases38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminAliasesa66ec6983e578c3ac4663171b39d168b'] = 'les 2 champs sont requis'; $_LANGADM['AdminAliases792fd33273f5b3dbbcc6bd5de52b7e20'] = 'n\'est pas un résultat valide'; $_LANGADM['AdminAliases9d2e974b83d9090b463dbcb2ef32ab51'] = 'n\'est pas un alias valide'; +$_LANGADM['AdminTracking1679821fd0e65d65924aa77e56068814'] = 'Liste des produits désactivés :'; +$_LANGADM['AdminTracking55406e92cd01b80132defa33f7957f45'] = 'Liste des produits hors stock sans attributs:'; +$_LANGADM['AdminTrackingd99d6bbc5dce58840c997fed8e739881'] = 'Liste des produits hors stock avec attributs:'; +$_LANGADM['AdminTrackingb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminTracking49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminTrackingec53a8c4f07baed5d8825072c89799be'] = 'Statut'; +$_LANGADM['AdminTracking428a70e43c5371126c0fb675e98c61d5'] = 'Liste des catégories vides :'; +$_LANGADM['AdminTrackingc0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricants'; +$_LANGADM['AdminTracking63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; +$_LANGADM['AdminTracking3601146c4e948c32b6424d2c0a7f0118'] = 'Prix'; +$_LANGADM['AdminTracking4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Taxe'; +$_LANGADM['AdminTracking27ce7f8b5623b2e2df568d64cf051607'] = 'Stock'; +$_LANGADM['AdminTracking8c489d0946f66d17d73f26366a4bf620'] = 'Poids'; +$_LANGADM['AdminSlipb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminSlip6fde42aa0857eb92fc0d0c3fb1c6c8b7'] = 'ID Commande'; +$_LANGADM['AdminSlip446faa7da2d42ba4ffeda73cb119dd91'] = 'Date d\'émission'; +$_LANGADM['AdminSlipc95ed58f8c9573f7d58667e6847758d9'] = 'Avoir'; +$_LANGADM['AdminSlip1e6d57e813355689e9c77e947d73ad8f'] = 'Début'; +$_LANGADM['AdminSlip0b1fb1278454d848f968d419e29c253b'] = 'Au format 2010-01-01 (date de début incluse)'; +$_LANGADM['AdminSlip33caa076f23f453dd4061726f3706325'] = 'Fin'; +$_LANGADM['AdminSlip647ad0242a9d796e3c83ecf6d6435bc2'] = 'Au format 2010-01-31 (date de fin incluse)'; +$_LANGADM['AdminSlip067af5895a7ced3197520b591f9a41eb'] = 'Générer le PDF'; +$_LANGADM['AdminSlipf596633d68fc44d6c7460676060d5dcb'] = 'Date de début invalide'; +$_LANGADM['AdminSlipff9e9791ff17e1ca431449bb2fe992c0'] = 'Date de fin invalide'; +$_LANGADM['AdminSlip97e021ec21e7594c30cbb0adbe16be6d'] = 'Aucun avoir pour cette période'; $_LANGADM['AdminRangePriceb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminRangePrice914419aa32f04011357d3b604a86d7eb'] = 'Transporteur'; $_LANGADM['AdminRangePrice5da618e8e4b89c66fe86e32cdafde142'] = 'De'; @@ -174,18 +199,6 @@ $_LANGADM['AdminRangePrice2c39f2ba36ea6da8583198d554719eb1'] = 'Début de tranch $_LANGADM['AdminRangePrice33caa076f23f453dd4061726f3706325'] = 'A :'; $_LANGADM['AdminRangePrice6bf0217a0db567ce8495e5125a1dfffb'] = 'Fin de tranche (exclu)'; $_LANGADM['AdminRangePrice38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminRangeWeightb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminRangeWeight914419aa32f04011357d3b604a86d7eb'] = 'Transporteur'; -$_LANGADM['AdminRangeWeight5da618e8e4b89c66fe86e32cdafde142'] = 'De'; -$_LANGADM['AdminRangeWeighte12167aa0a7698e6ebc92b4ce3909b53'] = 'A'; -$_LANGADM['AdminRangeWeight553024cea5b7d69013550aefba774aaa'] = 'Tranches de poids'; -$_LANGADM['AdminRangeWeighted6f7f991fdee1625deeaf369ec3146b'] = 'Sur quel transporteur cette tranche sera appliquée'; -$_LANGADM['AdminRangeWeightaec665fba230ca53799cf3563c696792'] = 'Il n\'y a pas de transporteur disponible pour une gamme de poids.'; -$_LANGADM['AdminRangeWeight1e6d57e813355689e9c77e947d73ad8f'] = 'De :'; -$_LANGADM['AdminRangeWeight2c39f2ba36ea6da8583198d554719eb1'] = 'Début de tranche (inclu)'; -$_LANGADM['AdminRangeWeight33caa076f23f453dd4061726f3706325'] = 'A :'; -$_LANGADM['AdminRangeWeight6bf0217a0db567ce8495e5125a1dfffb'] = 'Fin de tranche (exclu)'; -$_LANGADM['AdminRangeWeight38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminAttributeGeneratorc0babe5601b3f91313d53267c3c7ec24'] = 'Revenir au produit'; $_LANGADM['AdminAttributeGenerator13cdf2d0d1b996ad3a141e297c62ea6b'] = 'Cette fonctionnalité a été désactivée, vous pouvez l\'activer sur cette page:'; $_LANGADM['AdminAttributeGenerator9a63ec735f057c1366284bda67eee7de'] = 'Performances'; @@ -201,18 +214,18 @@ $_LANGADM['AdminAttributeGenerator233c543a23378c4ffd0e1efb17408510'] = 'Impact s $_LANGADM['AdminAttributeGenerator792467936100838046f749e63dadfbdb'] = 'Impact sur le poids :'; $_LANGADM['AdminAttributeGeneratorec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter'; $_LANGADM['AdminAttributeGeneratorf2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; -$_LANGADM['AdminSlipb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminSlip6fde42aa0857eb92fc0d0c3fb1c6c8b7'] = 'ID Commande'; -$_LANGADM['AdminSlip446faa7da2d42ba4ffeda73cb119dd91'] = 'Date d\'émission'; -$_LANGADM['AdminSlipc95ed58f8c9573f7d58667e6847758d9'] = 'Avoir'; -$_LANGADM['AdminSlip1e6d57e813355689e9c77e947d73ad8f'] = 'Début'; -$_LANGADM['AdminSlip0b1fb1278454d848f968d419e29c253b'] = 'Au format 2010-01-01 (date de début incluse)'; -$_LANGADM['AdminSlip33caa076f23f453dd4061726f3706325'] = 'Fin'; -$_LANGADM['AdminSlip647ad0242a9d796e3c83ecf6d6435bc2'] = 'Au format 2010-01-31 (date de fin incluse)'; -$_LANGADM['AdminSlip067af5895a7ced3197520b591f9a41eb'] = 'Générer le PDF'; -$_LANGADM['AdminSlipf596633d68fc44d6c7460676060d5dcb'] = 'Date de début invalide'; -$_LANGADM['AdminSlipff9e9791ff17e1ca431449bb2fe992c0'] = 'Date de fin invalide'; -$_LANGADM['AdminSlip97e021ec21e7594c30cbb0adbe16be6d'] = 'Aucun avoir pour cette période'; +$_LANGADM['AdminRangeWeightb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminRangeWeight914419aa32f04011357d3b604a86d7eb'] = 'Transporteur'; +$_LANGADM['AdminRangeWeight5da618e8e4b89c66fe86e32cdafde142'] = 'De'; +$_LANGADM['AdminRangeWeighte12167aa0a7698e6ebc92b4ce3909b53'] = 'A'; +$_LANGADM['AdminRangeWeight553024cea5b7d69013550aefba774aaa'] = 'Tranches de poids'; +$_LANGADM['AdminRangeWeighted6f7f991fdee1625deeaf369ec3146b'] = 'Sur quel transporteur cette tranche sera appliquée'; +$_LANGADM['AdminRangeWeightaec665fba230ca53799cf3563c696792'] = 'Il n\'y a pas de transporteur disponible pour une gamme de poids.'; +$_LANGADM['AdminRangeWeight1e6d57e813355689e9c77e947d73ad8f'] = 'De :'; +$_LANGADM['AdminRangeWeight2c39f2ba36ea6da8583198d554719eb1'] = 'Début de tranche (inclu)'; +$_LANGADM['AdminRangeWeight33caa076f23f453dd4061726f3706325'] = 'A :'; +$_LANGADM['AdminRangeWeight6bf0217a0db567ce8495e5125a1dfffb'] = 'Fin de tranche (exclu)'; +$_LANGADM['AdminRangeWeight38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminContactsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminContactsb78a3223503896721cca1303f776159b'] = 'Nom'; $_LANGADM['AdminContacts8b5dd64ab8d0b8158906796b53a200e2'] = 'Adresse e-mail'; @@ -244,6 +257,20 @@ $_LANGADM['AdminGeolocation3f089ec9b9ef410a9d81bef70114d387'] = 'Pour utiliser l $_LANGADM['AdminGeolocation976b976e66879a470635bf0f660e81fc'] = 'ce fichier'; $_LANGADM['AdminGeolocation3d3aa857bbce5746c7156f447f6bdc60'] = 'et de le décompresser dans le dossier tools/geoip/'; $_LANGADM['AdminGeolocation49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminTabsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminTabs49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminTabs817434295a673aed431435658b65d9a7'] = 'Icône'; +$_LANGADM['AdminTabse55f75a29310d7b60f7ac1d390c8ae42'] = 'Module'; +$_LANGADM['AdminTabs8cf04a9734132302f96da8e113e80ce5'] = 'Accueil'; +$_LANGADM['AdminTabs7015777bcc86cd0c5e4819310d62b040'] = 'Onglets'; +$_LANGADM['AdminTabs4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminTabs6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères interdits :'; +$_LANGADM['AdminTabs6788f67ae68b5aa5ad08d8129399bf81'] = 'Classe :'; +$_LANGADM['AdminTabs53b3cae42737979c884275593a01f468'] = 'Module :'; +$_LANGADM['AdminTabs980bb228a128556fe3df923d2ede30b4'] = 'Uploade un logo depuis votre ordinateur'; +$_LANGADM['AdminTabse81c4e4f2b7b93b481e13a8553c2ae1b'] = 'ou'; +$_LANGADM['AdminTabs6adf97f83acf6453d4a6a4b1070f3754'] = 'Aucune'; +$_LANGADM['AdminTabs38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminThemesa1c58e94227389415de133efdf78ea6e'] = 'Apparence'; $_LANGADM['AdminThemes231856676246820203ddc442e481a5eb'] = 'Logo de l\'en-tête :'; $_LANGADM['AdminThemes86824265d3f2908928a0b5689ab9541d'] = 'Apparaîtra sur la page d\'accueil de votre boutique'; @@ -260,20 +287,6 @@ $_LANGADM['AdminThemes93af5f35c247e0e814bd676249f60b62'] = 'Caractère de sépar $_LANGADM['AdminThemesf2284dabeee8efb9617fbb0f05883adb'] = 'Utilisé pour le chemin de navigation dans les catégories et les produits'; $_LANGADM['AdminThemesbbb572a770006c9e0e57c9e5d4bcda90'] = 'En direct de Prestashop Addons !'; $_LANGADM['AdminThemes0ac3a6bb56ca9b829859b5c12040e3a0'] = 'Trouvez de nouveaux thèmes sur Prestashop Addons !'; -$_LANGADM['AdminTabsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminTabs49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminTabs817434295a673aed431435658b65d9a7'] = 'Icône'; -$_LANGADM['AdminTabse55f75a29310d7b60f7ac1d390c8ae42'] = 'Module'; -$_LANGADM['AdminTabs8cf04a9734132302f96da8e113e80ce5'] = 'Accueil'; -$_LANGADM['AdminTabs7015777bcc86cd0c5e4819310d62b040'] = 'Onglets'; -$_LANGADM['AdminTabs4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminTabs6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères interdits :'; -$_LANGADM['AdminTabs6788f67ae68b5aa5ad08d8129399bf81'] = 'Classe :'; -$_LANGADM['AdminTabs53b3cae42737979c884275593a01f468'] = 'Module :'; -$_LANGADM['AdminTabs980bb228a128556fe3df923d2ede30b4'] = 'Uploade un logo depuis votre ordinateur'; -$_LANGADM['AdminTabse81c4e4f2b7b93b481e13a8553c2ae1b'] = 'ou'; -$_LANGADM['AdminTabs6adf97f83acf6453d4a6a4b1070f3754'] = 'Aucune'; -$_LANGADM['AdminTabs38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminAttachmentsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminAttachments49ee3087348e8d44e1feda1917443987'] = 'Nom'; $_LANGADM['AdminAttachments0b27918290ff5323bea1e3b78a9cf04e'] = 'Fichier'; @@ -306,23 +319,6 @@ $_LANGADM['AdminContact18325105de95083e4a1d10b78f29c2bc'] = 'Etat :'; $_LANGADM['AdminContact673ae02fffb72f0fe68a66f096a01347'] = 'Téléphone :'; $_LANGADM['AdminContact0e2fb5b02182fd28b9b96e86ed27838f'] = 'Fax :'; $_LANGADM['AdminContact5dd532f0a63d89c5af0243b74732f63c'] = 'Coordonnées'; -$_LANGADM['AdminGendersb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminGenders49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminGendersa1fa27779242b4902f7ae3bdd5c6d508'] = 'Type'; -$_LANGADM['AdminGenders63889cfb9d3cbe05d1bd2be5cc9953fd'] = 'Homme'; -$_LANGADM['AdminGendersb719ce180ec7bd9641fece2f920f4817'] = 'Femme'; -$_LANGADM['AdminGenderse9bb5320b3890b6747c91b5a71ae5a01'] = 'Neutre'; -$_LANGADM['AdminGendersbe53a0541a6d36f6ecb879fa2c584b08'] = 'Image'; -$_LANGADM['AdminGenders019ec3132cdf8ee0f2e2a75cf5d3e459'] = 'Sexe'; -$_LANGADM['AdminGenders4e140ba723a03baa6948340bf90e2ef6'] = 'Nom:'; -$_LANGADM['AdminGenders6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères invalides :'; -$_LANGADM['AdminGenderse659b52eba1f0299b2d8ca3483919e72'] = 'Type :'; -$_LANGADM['AdminGenders461900b74731e07320ca79366df3e809'] = 'Image :'; -$_LANGADM['AdminGenders5db76c4f753ae0875becc0aacea74b85'] = 'Largeur de l\'image:'; -$_LANGADM['AdminGenders3278973f0260849b8b58597a7aed17be'] = 'Largeur de l\'image en pixel. \"0\" pour utiliser la taille originale'; -$_LANGADM['AdminGenders7ff8263c405723baa07f9f747db48f99'] = 'Hauteur de l\'image :'; -$_LANGADM['AdminGenders8131c4756e4219c8d4b816222f07a6a1'] = 'Hauteur de l\'image en pixel. \"0\" pour utiliser la taille originale'; -$_LANGADM['AdminGenders38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminDbe307db07b3975fef922a80d07455ee5e'] = 'Base de données'; $_LANGADM['AdminDb505de52d5ae227b6e8acb02dce2a0c4d'] = 'Serveur :'; $_LANGADM['AdminDb67cfd6717606cadb04e8ae03082a0182'] = 'IP ou nom du serveur, \'localhost\' fonctionnera dans la plupart des cas'; @@ -342,6 +338,23 @@ $_LANGADM['AdminDb55bf473fba81a29380af1598e67c555b'] = 'Changer de moteur pour'; $_LANGADM['AdminDb01b6e20344b68835c5ed1ddedf20d531'] = 'pour'; $_LANGADM['AdminDb6c1375701d87f2636b01cf951d0a375b'] = 'Moteur MySQL'; $_LANGADM['AdminDbac7484fa4e36b9b26ceb27526ee7268f'] = 'Changer le moteur en'; +$_LANGADM['AdminGendersb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminGenders49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminGendersa1fa27779242b4902f7ae3bdd5c6d508'] = 'Type'; +$_LANGADM['AdminGenders63889cfb9d3cbe05d1bd2be5cc9953fd'] = 'Homme'; +$_LANGADM['AdminGendersb719ce180ec7bd9641fece2f920f4817'] = 'Femme'; +$_LANGADM['AdminGenderse9bb5320b3890b6747c91b5a71ae5a01'] = 'Neutre'; +$_LANGADM['AdminGendersbe53a0541a6d36f6ecb879fa2c584b08'] = 'Image'; +$_LANGADM['AdminGenders019ec3132cdf8ee0f2e2a75cf5d3e459'] = 'Sexe'; +$_LANGADM['AdminGenders4e140ba723a03baa6948340bf90e2ef6'] = 'Nom:'; +$_LANGADM['AdminGenders6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères invalides :'; +$_LANGADM['AdminGenderse659b52eba1f0299b2d8ca3483919e72'] = 'Type :'; +$_LANGADM['AdminGenders461900b74731e07320ca79366df3e809'] = 'Image :'; +$_LANGADM['AdminGenders5db76c4f753ae0875becc0aacea74b85'] = 'Largeur de l\'image:'; +$_LANGADM['AdminGenders3278973f0260849b8b58597a7aed17be'] = 'Largeur de l\'image en pixel. \"0\" pour utiliser la taille originale'; +$_LANGADM['AdminGenders7ff8263c405723baa07f9f747db48f99'] = 'Hauteur de l\'image :'; +$_LANGADM['AdminGenders8131c4756e4219c8d4b816222f07a6a1'] = 'Hauteur de l\'image en pixel. \"0\" pour utiliser la taille originale'; +$_LANGADM['AdminGenders38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminLogsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminLogsecb833e2dc5d6c03d4d0cddf1b15e85a'] = 'Gravité (1-4)'; $_LANGADM['AdminLogs4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message'; @@ -358,26 +371,6 @@ $_LANGADM['AdminLogsb80c52e7f679fba3c2837b42705fe779'] = 'A but informatif'; $_LANGADM['AdminLogs0eaadb4fcb48a0a0ed7bc9868be9fbaa'] = 'Avertissement'; $_LANGADM['AdminLogs902b0d55fddef6f8d651fe1035b7d4bd'] = 'Erreur'; $_LANGADM['AdminLogs2d7a39ee844a8ac84031dcd289630dd9'] = 'Problème majeur (erreur critique)'; -$_LANGADM['AdminShipping2605fbb693837be42d0cd0e701cb5aa3'] = 'Manutention'; -$_LANGADM['AdminShipping1d8ca7f442e6d4ad3da5cb61b84284fc'] = 'Frais de manutention'; -$_LANGADM['AdminShipping21034ae6d01a83e702839a72ba8a77b0'] = 'HT'; -$_LANGADM['AdminShippingc9722f74f95451816de0f8ca3259ae44'] = 'Frais de port offerts à partir de'; -$_LANGADM['AdminShipping8e0fea0a31a2ef28aa69ecc1ec4460c1'] = 'Si vous définissez ces paramètres à 0, ils seront désactivés'; -$_LANGADM['AdminShipping03bad6eaeef7a9d4655f07ac28a1746d'] = 'Les bons de réduction ne sont pas pris en compte lors du calcul de la gratuité des frais de port'; -$_LANGADM['AdminShipping780c462e85ba4399a5d42e88f69a15ca'] = 'Facturation'; -$_LANGADM['AdminShippinge3d29a6f3d7588301aa04429e686b260'] = 'En fonction du prix total'; -$_LANGADM['AdminShipping49fec5c86a3b43821fdf0d9aa7bbd935'] = 'En fonction du poids total'; -$_LANGADM['AdminShippingedba2e2f00e254e64fcb0057c0279a1d'] = 'Frais par transporteurs, zones et tranches'; -$_LANGADM['AdminShipping006300efaf063e1705dd614ea0ae9e8b'] = 'Frais'; -$_LANGADM['AdminShippingc58f2291088838a2fd291aa70d560b30'] = 'Vous avez seulement des transporteurs gratuits, il n\'est pas nécessaire de configurer vos tarifs de livraison.'; -$_LANGADM['AdminShippingf8617a92ba0a0a4eabee724eab7c9f48'] = 'Transporteur :'; -$_LANGADM['AdminShippingabed9eda0a174a7b32829098aa53ae4d'] = 'Zone / Tranche'; -$_LANGADM['AdminShipping01b6e20344b68835c5ed1ddedf20d531'] = 'à'; -$_LANGADM['AdminShippingb1c94ca2fbc3e78fc30069c8d0f01680'] = 'Toutes les zones :'; -$_LANGADM['AdminShipping38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminShippingee40885aa3a350e6182b8ada1843ed30'] = 'Ce transporteur est gratuit'; -$_LANGADM['AdminShipping8c6e9d97aa1ff2b61603508a7d25e8b7'] = 'Aucune tranche pour ce transporteur'; -$_LANGADM['AdminShipping3c5a90ab81573c044caffb847d9157f6'] = 'Les prix sont en hors taxes.'; $_LANGADM['AdminCmsCategoriesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminCmsCategoriese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; $_LANGADM['AdminCmsCategoriesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -398,6 +391,26 @@ $_LANGADM['AdminCmsCategories394deec8b4e901394f69ad41095b1ecc'] = 'Meta mots-cle $_LANGADM['AdminCmsCategories02fa003c38fefcda498b876f67f4cac7'] = 'URL simplifiée :'; $_LANGADM['AdminCmsCategories2ef9671539ece086eb5c74c851a08565'] = 'Seulement les lettres et le caractère moins (-) sont autorisés'; $_LANGADM['AdminCmsCategories38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminShipping2605fbb693837be42d0cd0e701cb5aa3'] = 'Manutention'; +$_LANGADM['AdminShipping1d8ca7f442e6d4ad3da5cb61b84284fc'] = 'Frais de manutention'; +$_LANGADM['AdminShipping21034ae6d01a83e702839a72ba8a77b0'] = 'HT'; +$_LANGADM['AdminShippingc9722f74f95451816de0f8ca3259ae44'] = 'Frais de port offerts à partir de'; +$_LANGADM['AdminShipping8e0fea0a31a2ef28aa69ecc1ec4460c1'] = 'Si vous définissez ces paramètres à 0, ils seront désactivés'; +$_LANGADM['AdminShipping03bad6eaeef7a9d4655f07ac28a1746d'] = 'Les bons de réduction ne sont pas pris en compte lors du calcul de la gratuité des frais de port'; +$_LANGADM['AdminShipping780c462e85ba4399a5d42e88f69a15ca'] = 'Facturation'; +$_LANGADM['AdminShippinge3d29a6f3d7588301aa04429e686b260'] = 'En fonction du prix total'; +$_LANGADM['AdminShipping49fec5c86a3b43821fdf0d9aa7bbd935'] = 'En fonction du poids total'; +$_LANGADM['AdminShippingedba2e2f00e254e64fcb0057c0279a1d'] = 'Frais par transporteurs, zones et tranches'; +$_LANGADM['AdminShipping006300efaf063e1705dd614ea0ae9e8b'] = 'Frais'; +$_LANGADM['AdminShippingc58f2291088838a2fd291aa70d560b30'] = 'Vous avez seulement des transporteurs gratuits, il n\'est pas nécessaire de configurer vos tarifs de livraison.'; +$_LANGADM['AdminShippingf8617a92ba0a0a4eabee724eab7c9f48'] = 'Transporteur :'; +$_LANGADM['AdminShippingabed9eda0a174a7b32829098aa53ae4d'] = 'Zone / Tranche'; +$_LANGADM['AdminShipping01b6e20344b68835c5ed1ddedf20d531'] = 'à'; +$_LANGADM['AdminShippingb1c94ca2fbc3e78fc30069c8d0f01680'] = 'Toutes les zones :'; +$_LANGADM['AdminShipping38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminShippingee40885aa3a350e6182b8ada1843ed30'] = 'Ce transporteur est gratuit'; +$_LANGADM['AdminShipping8c6e9d97aa1ff2b61603508a7d25e8b7'] = 'Aucune tranche pour ce transporteur'; +$_LANGADM['AdminShipping3c5a90ab81573c044caffb847d9157f6'] = 'Les prix sont en hors taxes.'; $_LANGADM['AdminStatesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminStatese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; $_LANGADM['AdminStatesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -442,46 +455,6 @@ $_LANGADM['AdminFeatures38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminFeatures0c8a987e64c2d46886bf92e29c736bdc'] = 'Ajouter une nouvelle valeur de caractéristique'; $_LANGADM['AdminFeatures13cdf2d0d1b996ad3a141e297c62ea6b'] = 'Cette fonctionnalité a été désactivée, vous pouvez l\'activer sur cette page:'; $_LANGADM['AdminFeatures9a63ec735f057c1366284bda67eee7de'] = 'Performances'; -$_LANGADM['AdminTracking428a70e43c5371126c0fb675e98c61d5'] = 'Liste des catégories vides :'; -$_LANGADM['AdminTracking1679821fd0e65d65924aa77e56068814'] = 'Liste des produits désactivés :'; -$_LANGADM['AdminTracking55406e92cd01b80132defa33f7957f45'] = 'Liste des produits hors stock sans attributs:'; -$_LANGADM['AdminTrackingd99d6bbc5dce58840c997fed8e739881'] = 'Liste des produits hors stock avec attributs:'; -$_LANGADM['AdminTrackingb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminTracking49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminTrackingec53a8c4f07baed5d8825072c89799be'] = 'Statut'; -$_LANGADM['AdminTracking06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; -$_LANGADM['AdminTracking6cfe61694ee1bb13ae719d47c2f80b7a'] = 'trouvé(s)'; -$_LANGADM['AdminTrackingc0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricants'; -$_LANGADM['AdminTracking63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; -$_LANGADM['AdminTracking3601146c4e948c32b6424d2c0a7f0118'] = 'Prix'; -$_LANGADM['AdminTracking4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Taxe'; -$_LANGADM['AdminTracking27ce7f8b5623b2e2df568d64cf051607'] = 'Stock'; -$_LANGADM['AdminTracking8c489d0946f66d17d73f26366a4bf620'] = 'Poids'; -$_LANGADM['AdminTrackingeadcead196002163653bd0e9be7b6d5e'] = 'Modifier ce produit'; -$_LANGADM['AdminTrackingdcc4db89d62ec3e757428a5811553c0b'] = 'Voulez-vous supprimer'; -$_LANGADM['AdminTracking0449f210068787074ce58175b1a2f5cf'] = 'Supprimer ce produit'; -$_LANGADM['AdminTrackinge53d0648d344037610407a88c1389ca1'] = 'Suivi du catalogue'; -$_LANGADM['AdminInvoices1b107c8f50c81b4b3497765849934a1c'] = 'Options des factures'; -$_LANGADM['AdminInvoices3ae56a835894e53600833725244b578f'] = 'Activer les factures :'; -$_LANGADM['AdminInvoices23bf11ceb4fb51647fd977aba60246d3'] = 'Activer ou désactiver la prise en charge des factures'; -$_LANGADM['AdminInvoices832d6a06e91e49828a89fb1ca4651d37'] = 'Préfixe :'; -$_LANGADM['AdminInvoices0df35f41ce9f64e7f14819bd4145a2be'] = 'Préfixe utilisé pour la numérotation des factures'; -$_LANGADM['AdminInvoicesdb2d9ca9b008f4cdb2c5902adaa84fdc'] = 'Numéro facture :'; -$_LANGADM['AdminInvoices1513c8f4f5c2d340ac3e1c3d09aeff4c'] = 'Texte libre:'; -$_LANGADM['AdminInvoicescff972b8880cbbf6753afb2706b43fc8'] = 'Ce texte apparaîtra au bas de la facture'; -$_LANGADM['AdminInvoices9a0a4f0869ab12a21407047290750e7a'] = 'Par date'; -$_LANGADM['AdminInvoices1e6d57e813355689e9c77e947d73ad8f'] = 'Depuis :'; -$_LANGADM['AdminInvoices0b1fb1278454d848f968d419e29c253b'] = 'Format : 2007-12-31 (inclus)'; -$_LANGADM['AdminInvoices33caa076f23f453dd4061726f3706325'] = 'Jusque :'; -$_LANGADM['AdminInvoices647ad0242a9d796e3c83ecf6d6435bc2'] = 'Format : 2008-12-31 (inclus)'; -$_LANGADM['AdminInvoicesc491f71acb93db711c341417e8c6be9e'] = 'Imprimer un PDF des factures'; -$_LANGADM['AdminInvoicesa7bc5a8c54672ab332de0c0174dcd236'] = 'Par statuts'; -$_LANGADM['AdminInvoicesf596633d68fc44d6c7460676060d5dcb'] = 'Date de début invalide'; -$_LANGADM['AdminInvoicesff9e9791ff17e1ca431449bb2fe992c0'] = 'Date de fin invalide'; -$_LANGADM['AdminInvoices366a2e6043b7f22bbb12df4a5fce45fb'] = 'Aucune facture trouvée pour cette période'; -$_LANGADM['AdminInvoicescb63a9e24da94fffad24dd2f9bcf4ca4'] = 'Statuts de commande invalide'; -$_LANGADM['AdminInvoices9a572188372df6be754991fd8f080f16'] = 'Aucune facture trouvée pour ces statuts'; -$_LANGADM['AdminInvoices38b1cc080b5571823889c6f775bf6606'] = 'Numéro de facture invalide (il doit être supèrieur à '; $_LANGADM['AdminLocalization369686331c93d55e587441143ccdf427'] = 'Localisation'; $_LANGADM['AdminLocalization1a8940a8dec839073dae5489faff67f7'] = 'Unité de poids :'; $_LANGADM['AdminLocalization659c95668841b7d6602ead454b28d4ba'] = 'L\'unité de poids de votre boutique (ex. kg ou lbs)'; @@ -506,6 +479,27 @@ $_LANGADM['AdminLocalization67074a462da1e5a1f733c6fb8e2355f3'] = 'Import de pack $_LANGADM['AdminLocalization8b1b3046eb5036b08a5eda7dbaa371cd'] = 'Pack de localisation que vous souhaitez importer:'; $_LANGADM['AdminLocalizationeedffe39822101d8aaeaf3b1a1661926'] = 'Contenu à importer :'; $_LANGADM['AdminLocalization6ae75b98f6c60f529bb7426e89216a37'] = 'Importer'; +$_LANGADM['AdminInvoices1b107c8f50c81b4b3497765849934a1c'] = 'Options des factures'; +$_LANGADM['AdminInvoices3ae56a835894e53600833725244b578f'] = 'Activer les factures :'; +$_LANGADM['AdminInvoices23bf11ceb4fb51647fd977aba60246d3'] = 'Activer ou désactiver la prise en charge des factures'; +$_LANGADM['AdminInvoices832d6a06e91e49828a89fb1ca4651d37'] = 'Préfixe :'; +$_LANGADM['AdminInvoices0df35f41ce9f64e7f14819bd4145a2be'] = 'Préfixe utilisé pour la numérotation des factures'; +$_LANGADM['AdminInvoicesdb2d9ca9b008f4cdb2c5902adaa84fdc'] = 'Numéro facture :'; +$_LANGADM['AdminInvoices1513c8f4f5c2d340ac3e1c3d09aeff4c'] = 'Texte libre:'; +$_LANGADM['AdminInvoicescff972b8880cbbf6753afb2706b43fc8'] = 'Ce texte apparaîtra au bas de la facture'; +$_LANGADM['AdminInvoices9a0a4f0869ab12a21407047290750e7a'] = 'Par date'; +$_LANGADM['AdminInvoices1e6d57e813355689e9c77e947d73ad8f'] = 'Depuis :'; +$_LANGADM['AdminInvoices0b1fb1278454d848f968d419e29c253b'] = 'Format : 2007-12-31 (inclus)'; +$_LANGADM['AdminInvoices33caa076f23f453dd4061726f3706325'] = 'Jusque :'; +$_LANGADM['AdminInvoices647ad0242a9d796e3c83ecf6d6435bc2'] = 'Format : 2008-12-31 (inclus)'; +$_LANGADM['AdminInvoicesc491f71acb93db711c341417e8c6be9e'] = 'Imprimer un PDF des factures'; +$_LANGADM['AdminInvoicesa7bc5a8c54672ab332de0c0174dcd236'] = 'Par statuts'; +$_LANGADM['AdminInvoicesf596633d68fc44d6c7460676060d5dcb'] = 'Date de début invalide'; +$_LANGADM['AdminInvoicesff9e9791ff17e1ca431449bb2fe992c0'] = 'Date de fin invalide'; +$_LANGADM['AdminInvoices366a2e6043b7f22bbb12df4a5fce45fb'] = 'Aucune facture trouvée pour cette période'; +$_LANGADM['AdminInvoicescb63a9e24da94fffad24dd2f9bcf4ca4'] = 'Statuts de commande invalide'; +$_LANGADM['AdminInvoices9a572188372df6be754991fd8f080f16'] = 'Aucune facture trouvée pour ces statuts'; +$_LANGADM['AdminInvoices38b1cc080b5571823889c6f775bf6606'] = 'Numéro de facture invalide (il doit être supèrieur à '; $_LANGADM['AdminAddressesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminAddresses20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom'; $_LANGADM['AdminAddresses8d3f5eff9c40ee315d452392bed5309b'] = 'Nom'; @@ -1701,13 +1695,8 @@ $_LANGADM['AdminModulesbcfaccebf745acfd5e75351095a5394a'] = 'Desactiver'; $_LANGADM['AdminModules2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Activer'; $_LANGADM['AdminModules526d688f37a86d3c3f27d0c5016eb71d'] = 'Réinitialiser'; $_LANGADM['AdminModulesf1206f9fadc5ce41694f69129aecac26'] = 'Configurer'; -$_LANGADM['AdminModules9ce81cf948b7325d53c64aa610851552'] = 'Cette action supprime définitivement le module sur votre serveur. Êtes-vous vraiment sûr ?'; $_LANGADM['AdminModulesf2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; -$_LANGADM['AdminModulesdf3f079de6961496f0460dcfdbf9bca3'] = 'par'; -$_LANGADM['AdminModules96e36efe70e72835ae51946e2650f9e7'] = 'Ajouter un nouveau module'; -$_LANGADM['AdminModules5b48d0f5735d2f9b73a8f3ec7c4858ba'] = 'Fichier du module'; -$_LANGADM['AdminModules5815819625f2a7b13017e31a3d1af0dd'] = 'Chargez le module depuis votre poste de travail.'; -$_LANGADM['AdminModules8634e049945e0e8562673698a1abb485'] = 'Charger le module'; +$_LANGADM['AdminModules9ce81cf948b7325d53c64aa610851552'] = 'Cette action supprime définitivement le module sur votre serveur. Êtes-vous vraiment sûr ?'; $_LANGADM['AdminModules13348442cc6a27032d2b4aa28b75a5d3'] = 'Rechercher'; $_LANGADM['AdminModules00c3388449f7c4d73cc8c417d7d38554'] = 'Tous les modules'; $_LANGADM['AdminModules5976afe9ba86f2fdc39868d5282b02fa'] = 'Modules Natif'; @@ -1723,6 +1712,11 @@ $_LANGADM['AdminModulesa0f454ebaee933c7791ffcdda76944b3'] = 'Modules desactivé' $_LANGADM['AdminModulesc3987e4cac14a8456515f0d200da04ee'] = 'Tous les pays'; $_LANGADM['AdminModulesd188407e1d066cd41925efebe2dab3da'] = 'Pays actuel:'; $_LANGADM['AdminModulesd7778d0c64b6ba21494c97f77a66885a'] = 'Filtrer'; +$_LANGADM['AdminModules96e36efe70e72835ae51946e2650f9e7'] = 'Ajouter un nouveau module'; +$_LANGADM['AdminModules5b48d0f5735d2f9b73a8f3ec7c4858ba'] = 'Fichier du module'; +$_LANGADM['AdminModules5815819625f2a7b13017e31a3d1af0dd'] = 'Chargez le module depuis votre poste de travail.'; +$_LANGADM['AdminModules8634e049945e0e8562673698a1abb485'] = 'Charger le module'; +$_LANGADM['AdminModulesdf3f079de6961496f0460dcfdbf9bca3'] = 'par'; $_LANGADM['AdminModulesa27dfe771799a09fd55fea73286eb6ab'] = 'Désinstaller'; $_LANGADM['AdminModules349838fb1d851d3e2014b9fe39203275'] = 'Installer'; $_LANGADM['AdminCarriersb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -1733,11 +1727,15 @@ $_LANGADM['AdminCarriersec53a8c4f07baed5d8825072c89799be'] = 'Statut'; $_LANGADM['AdminCarriersf9293626f0c44c6e310fc49280c20790'] = 'Transporteur gratuit'; $_LANGADM['AdminCarriers52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position'; $_LANGADM['AdminCarriers3601146c4e948c32b6424d2c0a7f0118'] = 'Prix'; +$_LANGADM['AdminCarrierscf3fb1ff52ea1eed3347ac5401ee7f0c'] = 'Croissant'; +$_LANGADM['AdminCarrierse3cf5ac19407b1a62c6fccaff675a53b'] = 'Décroissant'; $_LANGADM['AdminCarriers8430a7b1b81635e3df949c2845303303'] = 'Options du transporteur'; $_LANGADM['AdminCarriers80ac9c802ce4d76982ab5a2e5a54b8bc'] = 'Transporteur par défaut :'; $_LANGADM['AdminCarriers5528aa4f25577dcffcfca40eda4c2a5b'] = 'Transporteur par défaut utilisé dans la boutique'; $_LANGADM['AdminCarriers544532426f92451ebe42205efa14bf2a'] = 'Tri par défaut du transporteur :'; $_LANGADM['AdminCarriersd651904bdc84edacc04911bbf7c8e2e5'] = 'Ce tri par défaut ne sera disponible que sur la boutique'; +$_LANGADM['AdminCarriers895f0b531e8a5b98fa4e70d4db375cf9'] = 'Ordre par défaut du transporteur:'; +$_LANGADM['AdminCarriersc986c848b51103d546018302bc869522'] = 'Cet ordre par défaut ne sera disponible que sur le front-office'; $_LANGADM['AdminCarriersc0add41517a5511d7b58d2c992db11e7'] = 'Comment créer un nouveau transporteur ?'; $_LANGADM['AdminCarriersb8bf3ffcbb8025ef76f8d67fff0cdf2b'] = 'Cliquez sur \"Nouveau\".'; $_LANGADM['AdminCarriersb7ccdf6ab58f5514acc520721ddc9f08'] = 'Remplissez les champs et cliquez sur \"Enregistrer\".'; @@ -2120,7 +2118,6 @@ $_LANGADM['AdminTabd4fecde5ac83b59cc690fd4d26d79abe'] = 'Remboursement effectué $_LANGADM['AdminTab795aa39f13629841edad6c04d3aca405'] = 'Images déplacées avec succès'; $_LANGADM['AdminTabef61fb324d729c341ea8ab9901e23566'] = 'Nouveau'; $_LANGADM['AdminTab01f8544c8fd4628bc686502e8b727d95'] = 'le champ'; -$_LANGADM['AdminTab0a5fa53f3f20f67f98bd6c3b16df059d'] = 'est requis'; $_LANGADM['AdminTab7e47a344b06d82a8836cbee2748a79e6'] = 'est requis au moins en'; $_LANGADM['AdminTabf755e8b92cb8f02c24f6f539180d45b1'] = 'est trop long'; $_LANGADM['AdminTab70f4b635847038d056e33959821a7a66'] = 'caractères maximum'; @@ -2529,6 +2526,7 @@ $_LANGADM['AdminProducts0449f210068787074ce58175b1a2f5cf'] = 'Supprimer ce produ $_LANGADM['AdminProducts3094af8ef1a9cd6080c00647a5fbfc61'] = 'Voir les ventes du produit'; $_LANGADM['AdminProducts686e697538050e4664636337cc3b834f'] = 'Créer'; $_LANGADM['AdminProductsc9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer'; +$_LANGADM['AdminProducts9ea67be453eaccf020697b4654fc021a'] = 'Enregistrer et rester'; $_LANGADM['AdminProductsd5ba13ad00daa44c6a03d790e08cf0c8'] = 'Vous devez sauvegarder ce produit avant de pouvoir définir des prix spécifiques'; $_LANGADM['AdminProductsa6ff0f7a2a1993857cb67b769780e708'] = 'Aucun prix spécifique'; $_LANGADM['AdminProducts545f6c2f382c04810103b3e5e6f7d841'] = 'Illimité'; @@ -2575,14 +2573,6 @@ $_LANGADM['AdminProductsb56c3bda503a8dc4be356edb0cc31793'] = 'Tout replier'; $_LANGADM['AdminProducts5ffd7a335dd836b3373f5ec570a58bdc'] = 'Tout étendre'; $_LANGADM['AdminProducts5e9df908eafa83cb51c0a3720e8348c7'] = 'Tout cocher'; $_LANGADM['AdminProducts9747d23c8cc358c5ef78c51e59cd6817'] = 'Tout décocher'; -$_LANGADM['AdminProducts32b502f33a535f75dcbf63f6753c631e'] = 'Tags :'; -$_LANGADM['AdminProducts3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits :'; -$_LANGADM['AdminProducts8fca858b27c5837dcb22c398aca5e0fc'] = 'Tags séparés par des virgules (ex : dvd, lecteur dvd, hifi)'; -$_LANGADM['AdminProductsbe26ade2055790d0e8d19eed69309574'] = 'Accessoires :'; -$_LANGADM['AdminProductsd18324caa0ff21355efe5b6df70a3640'] = '(N\'oubliez pas d\'enregistrer le produit ensuite)'; -$_LANGADM['AdminProducts3b263477a8ad622d76979befafd0119d'] = 'Tapez les premières lettres du nom du produit, puis choisissez le produit dans la liste déroulante :'; -$_LANGADM['AdminProductsdd8c7d4ab211f8e57f450a015dfe4131'] = 'Ajouter un accessoire'; -$_LANGADM['AdminProducts9ea67be453eaccf020697b4654fc021a'] = 'Enregistrer et rester'; $_LANGADM['AdminProducts13cdf2d0d1b996ad3a141e297c62ea6b'] = 'Cette fonctionnalité a été désactivée, vous pouvez l\'activer sur cette page:'; $_LANGADM['AdminProducts9a63ec735f057c1366284bda67eee7de'] = 'Performances'; $_LANGADM['AdminProducts287234a1ff35a314b5b6bc4e5828e745'] = 'Déclinaisons'; @@ -2622,7 +2612,6 @@ $_LANGADM['AdminProducts3dd42bfc8345e82c43b4a40a3426ec49'] = 'Référence :'; $_LANGADM['AdminProductsccf096490d2671f3ea97ea9289eee5b1'] = 'EAN13 :'; $_LANGADM['AdminProductsaf7448c885be0d8acd5eb84322176570'] = 'UPC :'; $_LANGADM['AdminProducts418734e88e64dbe12a62122833c89da7'] = 'Caractères spéciaux autorisés :'; -$_LANGADM['AdminProductsbe9469719aa6efa2fc3bd5768bc406d7'] = 'Emplacement :'; $_LANGADM['AdminProductsac421120056d9d55c27faba6ae2178b2'] = 'La taille maximum d\'upload sur votre serveur est de'; $_LANGADM['AdminProductsdc8f50091cddc5183be3a5b5f774912a'] = 'Uploader un fichier'; $_LANGADM['AdminProducts3cb94c0658e6bbfdeac7e65b9635a8f5'] = 'Voici le lien'; @@ -2710,6 +2699,7 @@ $_LANGADM['AdminProducts6da03a74721a0554b7143254225cc08a'] = 'Reconditionné'; $_LANGADM['AdminProducts7825865597f0b1673524f56e335f3675'] = 'Choisir (optionnel)'; $_LANGADM['AdminProducts4cf86e65aa090f9e3acbfaba9f6af9a4'] = 'Vous êtes sur le point de perdre vos modifications, souhaitez vous continuer?'; $_LANGADM['AdminProducts4492081ca02b059f9e8af4ddaf0f7292'] = 'Pack'; +$_LANGADM['AdminProducts3b263477a8ad622d76979befafd0119d'] = 'Tapez les premières lettres du nom du produit, puis choisissez le produit dans la liste déroulante :'; $_LANGADM['AdminProducts2811dedc85918c3e3ed0becd87cbb336'] = 'Vous ne pouvez pas ajouter de produits téléchargeables à un pack.'; $_LANGADM['AdminProductsc7a915a59b56dc898c0ae52b64bed0c5'] = 'Ajouter un objet au pack'; $_LANGADM['AdminProducts126ddccbd9f946b8cd46d88b304a2020'] = 'Merci de sélectionner au moins un produit'; @@ -2741,6 +2731,7 @@ $_LANGADM['AdminProductsd74838fbbeb384c01d7294db33c36ec3'] = 'La gestion des sto $_LANGADM['AdminProducts10b8ce36a973c8009b521b39488a89a7'] = 'Frais de port supplémentaires'; $_LANGADM['AdminProductsb6ef48322d4d59004db9f650344c1a8f'] = 'La taxe du transporteur sera appliquée.'; $_LANGADM['AdminProducts3e565755572fa5df48eb811c62619098'] = 'Message quand en stock :'; +$_LANGADM['AdminProducts3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits :'; $_LANGADM['AdminProducts627b9f5acc2dcec1e8e341dd09df9768'] = 'Message lorsque hors-stock mais commandable :'; $_LANGADM['AdminProducts24a1199bf4dcbef398db7660409a61d9'] = 'Si rupture de stock :'; $_LANGADM['AdminProductsf072da215c080d985d44361e96a3cf60'] = 'Refuser les commandes'; @@ -2772,5 +2763,10 @@ $_LANGADM['AdminProducts7c4f29407893c334a6cb7a87bf045c0d'] = 'Droite'; $_LANGADM['AdminProducts03e895d6310cdab805586fce4123ed08'] = 'Sélectionner le type d\'image :'; $_LANGADM['AdminProducts883cb219650dc3aa23733c0aa59a2ef7'] = 'Code à insérer dans votre description'; $_LANGADM['AdminProducts29e6c2eef6a0b578f4c0395c1b8f5b88'] = 'Ce code est à copier/coller dans la description.'; +$_LANGADM['AdminProducts32b502f33a535f75dcbf63f6753c631e'] = 'Tags :'; +$_LANGADM['AdminProducts8fca858b27c5837dcb22c398aca5e0fc'] = 'Tags séparés par des virgules (ex : dvd, lecteur dvd, hifi)'; +$_LANGADM['AdminProductsbe26ade2055790d0e8d19eed69309574'] = 'Accessoires :'; +$_LANGADM['AdminProductsd18324caa0ff21355efe5b6df70a3640'] = '(N\'oubliez pas d\'enregistrer le produit ensuite)'; +$_LANGADM['AdminProductsdd8c7d4ab211f8e57f450a015dfe4131'] = 'Ajouter un accessoire'; ?> \ No newline at end of file