diff --git a/admin-dev/themes/default/template/controllers/products/combinaison/list_action_default.tpl b/admin-dev/themes/default/template/controllers/products/combination/list_action_default.tpl similarity index 100% rename from admin-dev/themes/default/template/controllers/products/combinaison/list_action_default.tpl rename to admin-dev/themes/default/template/controllers/products/combination/list_action_default.tpl diff --git a/admin-dev/themes/default/template/controllers/products/combinaison/list_action_delete.tpl b/admin-dev/themes/default/template/controllers/products/combination/list_action_delete.tpl similarity index 100% rename from admin-dev/themes/default/template/controllers/products/combinaison/list_action_delete.tpl rename to admin-dev/themes/default/template/controllers/products/combination/list_action_delete.tpl diff --git a/admin-dev/themes/default/template/controllers/products/combinaison/list_action_edit.tpl b/admin-dev/themes/default/template/controllers/products/combination/list_action_edit.tpl similarity index 100% rename from admin-dev/themes/default/template/controllers/products/combinaison/list_action_edit.tpl rename to admin-dev/themes/default/template/controllers/products/combination/list_action_edit.tpl diff --git a/admin-dev/themes/default/template/controllers/products/combinaison/list_footer.tpl b/admin-dev/themes/default/template/controllers/products/combination/list_footer.tpl similarity index 100% rename from admin-dev/themes/default/template/controllers/products/combinaison/list_footer.tpl rename to admin-dev/themes/default/template/controllers/products/combination/list_footer.tpl diff --git a/classes/Product.php b/classes/Product.php index 77c8aa208..0e83d6a91 100644 --- a/classes/Product.php +++ b/classes/Product.php @@ -1464,7 +1464,7 @@ class ProductCore extends ObjectModel * @param integer $id_product_attribute Product attribute id * @return array Deletion result */ - public function deleteAttributeCombinaison($id_product_attribute) + public function deleteAttributeCombination($id_product_attribute) { if (!$this->id || !$id_product_attribute || !is_numeric($id_product_attribute)) return false; @@ -1570,7 +1570,7 @@ class ProductCore extends ObjectModel * @param integer $id_lang Language id * @return array Product attributes combinaisons */ - public function getAttributeCombinaisons($id_lang) + public function getAttributeCombinations($id_lang) { if (!Combination::isFeatureActive()) return array(); @@ -1612,7 +1612,7 @@ class ProductCore extends ObjectModel * @param integer $id_lang Language id * @return array Product attribute combinaison by id_product_attribute */ - public function getAttributeCombinaisonsById($id_product_attribute, $id_lang) + public function getAttributeCombinationsById($id_product_attribute, $id_lang) { if (!Combination::isFeatureActive()) return array(); diff --git a/config/smartyadmin.config.inc.php b/config/smartyadmin.config.inc.php index 20618d98e..c7b8213bb 100644 --- a/config/smartyadmin.config.inc.php +++ b/config/smartyadmin.config.inc.php @@ -61,7 +61,6 @@ function smartyTranslate($params, &$smarty) $filename = ((!isset($smarty->compiler_object) OR !is_object($smarty->compiler_object->template)) ? $smarty->template_resource : $smarty->compiler_object->template->getTemplateFilepath()); // 1.5 admin : default filename is .tpl; test is made on dir $dir_filename = dirname($filename); - // key is Helper if dir contains "helper" // we may improve this later to get only the first directory everytime if(strpos($dir_filename, 'helper') !== false) @@ -70,15 +69,14 @@ function smartyTranslate($params, &$smarty) switch ($dir_filename) { // note : this may be modified later - case '.': - $class = 'index'; - break; - case 'helper': - $class = 'AdminTab'; - break; - default: - // Remove "controllers/" part from "controllers/XXX" - $class = 'Admin'.ucfirst(substr($dir_filename, 12)); + case '.': $class = 'index';break; + case 'helper' : $class = 'AdminTab';break; + default : + { + $parentClass = explode('/', $filename); + $key = array_search('controllers', $parentClass); + $class = 'Admin'.ucfirst($parentClass[$key + 1]); + } } if(in_array($class, array('header','footer','password','login'))) diff --git a/controllers/admin/AdminManufacturersController.php b/controllers/admin/AdminManufacturersController.php index 651639018..06b9690fc 100644 --- a/controllers/admin/AdminManufacturersController.php +++ b/controllers/admin/AdminManufacturersController.php @@ -573,7 +573,7 @@ class AdminManufacturersControllerCore extends AdminController { $products[$i] = new Product($products[$i]['id_product'], false, $this->context->language->id); /* Build attributes combinaisons */ - $combinaisons = $products[$i]->getAttributeCombinaisons($this->context->language->id); + $combinaisons = $products[$i]->getAttributeCombinations($this->context->language->id); foreach ($combinaisons as $k => $combinaison) { $comb_array[$combinaison['id_product_attribute']]['reference'] = $combinaison['reference']; diff --git a/controllers/admin/AdminProductsController.php b/controllers/admin/AdminProductsController.php index 2cb606fba..91808dabd 100644 --- a/controllers/admin/AdminProductsController.php +++ b/controllers/admin/AdminProductsController.php @@ -1074,7 +1074,7 @@ class AdminProductsControllerCore extends AdminController $id_product_attribute = (int)Tools::getValue('id_product_attribute'); if ($id_product && Validate::isUnsignedId($id_product) && Validate::isLoadedObject($product = new Product($id_product))) { - $product->deleteAttributeCombinaison($id_product_attribute); + $product->deleteAttributeCombination($id_product_attribute); $id_product_download = (int)ProductDownload::getIdFromIdAttribute($id_product, $id_product_attribute); if ($id_product_download) @@ -1146,11 +1146,11 @@ class AdminProductsControllerCore extends AdminController $id_product_attribute = (int)Tools::getValue('id_product_attribute'); if ($id_product && Validate::isUnsignedId($id_product) && Validate::isLoadedObject($product = new Product($id_product))) { - $combinations = $product->getAttributeCombinaisonsById($id_product_attribute, $this->context->language->id); + $combinations = $product->getAttributeCombinationsById($id_product_attribute, $this->context->language->id); $product_download = ProductDownload::getAttributeFromIdAttribute($id_product, $id_product_attribute); - foreach ($combinations as $key => $combinaison) + foreach ($combinations as $key => $combination) { - $combinations[$key]['attributes'][] = array($combinaison['group_name'], $combinaison['attribute_name'], $combinaison['id_attribute']); + $combinations[$key]['attributes'][] = array($combination['group_name'], $combination['attribute_name'], $combination['id_attribute']); // Added fields virtual product $combinations[$key]['id_product_download'] = count($product_download) ? $product_download[0]['id_product_download'] : ''; @@ -2062,7 +2062,7 @@ class AdminProductsControllerCore extends AdminController 'desc' => $this->l('Product sales'), ); - // adding button for adding a new combination in Combinaition tab + // adding button for adding a new combination in Combination tab $this->toolbar_btn['newCombination'] = array( 'short' => 'New combination', 'desc' => $this->l('New combination'), @@ -3340,32 +3340,32 @@ class AdminProductsControllerCore extends AdminController if ($product->id) { - /* Build attributes combinaisons */ - $combinaisons = $product->getAttributeCombinaisons($this->context->language->id); + /* Build attributes combinations */ + $combinations = $product->getAttributeCombinations($this->context->language->id); $groups = array(); $comb_array = array(); - if (is_array($combinaisons)) + if (is_array($combinations)) { $combination_images = $product->getCombinationImages($this->context->language->id); - foreach ($combinaisons as $k => $combinaison) + foreach ($combinations as $k => $combination) { - $price = Tools::displayPrice($combinaison['price'], $currency); + $price = Tools::displayPrice($combination['price'], $currency); - $comb_array[$combinaison['id_product_attribute']]['id_combinaison_attribute'] = $product->id.'||'.$combinaison['id_product_attribute']; - $comb_array[$combinaison['id_product_attribute']]['id_product_attribute'] = $combinaison['id_product_attribute']; - $comb_array[$combinaison['id_product_attribute']]['attributes'][] = array($combinaison['group_name'], $combinaison['attribute_name'], $combinaison['id_attribute']); - $comb_array[$combinaison['id_product_attribute']]['wholesale_price'] = $combinaison['wholesale_price']; - $comb_array[$combinaison['id_product_attribute']]['price'] = $price; - $comb_array[$combinaison['id_product_attribute']]['weight'] = $combinaison['weight'].Configuration::get('PS_WEIGHT_UNIT'); - $comb_array[$combinaison['id_product_attribute']]['unit_impact'] = $combinaison['unit_price_impact']; - $comb_array[$combinaison['id_product_attribute']]['reference'] = $combinaison['reference']; - $comb_array[$combinaison['id_product_attribute']]['ean13'] = $combinaison['ean13']; - $comb_array[$combinaison['id_product_attribute']]['upc'] = $combinaison['upc']; - $comb_array[$combinaison['id_product_attribute']]['id_image'] = isset($combination_images[$combinaison['id_product_attribute']][0]['id_image']) ? $combination_images[$combinaison['id_product_attribute']][0]['id_image'] : 0; - $comb_array[$combinaison['id_product_attribute']]['available_date'] = strftime($combinaison['available_date']); - $comb_array[$combinaison['id_product_attribute']]['default_on'] = $combinaison['default_on']; - if ($combinaison['is_color_group']) - $groups[$combinaison['id_attribute_group']] = $combinaison['group_name']; + $comb_array[$combination['id_product_attribute']]['id_combinaison_attribute'] = $product->id.'||'.$combination['id_product_attribute']; + $comb_array[$combination['id_product_attribute']]['id_product_attribute'] = $combination['id_product_attribute']; + $comb_array[$combination['id_product_attribute']]['attributes'][] = array($combination['group_name'], $combination['attribute_name'], $combination['id_attribute']); + $comb_array[$combination['id_product_attribute']]['wholesale_price'] = $combination['wholesale_price']; + $comb_array[$combination['id_product_attribute']]['price'] = $price; + $comb_array[$combination['id_product_attribute']]['weight'] = $combination['weight'].Configuration::get('PS_WEIGHT_UNIT'); + $comb_array[$combination['id_product_attribute']]['unit_impact'] = $combination['unit_price_impact']; + $comb_array[$combination['id_product_attribute']]['reference'] = $combination['reference']; + $comb_array[$combination['id_product_attribute']]['ean13'] = $combination['ean13']; + $comb_array[$combination['id_product_attribute']]['upc'] = $combination['upc']; + $comb_array[$combination['id_product_attribute']]['id_image'] = isset($combination_images[$combination['id_product_attribute']][0]['id_image']) ? $combination_images[$combination['id_product_attribute']][0]['id_image'] : 0; + $comb_array[$combination['id_product_attribute']]['available_date'] = strftime($combination['available_date']); + $comb_array[$combination['id_product_attribute']]['default_on'] = $combination['default_on']; + if ($combination['is_color_group']) + $groups[$combination['id_attribute_group']] = $combination['group_name']; } } @@ -3449,7 +3449,7 @@ class AdminProductsControllerCore extends AdminController $helper->actions = $this->actions; $helper->list_skip_actions = $this->list_skip_actions; $helper->colorOnBackground = true; - $helper->override_folder = $this->tpl_folder.'combinaison/'; + $helper->override_folder = $this->tpl_folder.'combination/'; return $helper->generateList($comb_array, $this->fieldsDisplay); } diff --git a/controllers/admin/AdminSuppliersController.php b/controllers/admin/AdminSuppliersController.php index e41517b90..82f69857e 100644 --- a/controllers/admin/AdminSuppliersController.php +++ b/controllers/admin/AdminSuppliersController.php @@ -258,7 +258,7 @@ class AdminSuppliersControllerCore extends AdminController { $products[$i] = new Product($products[$i]['id_product'], false, $this->context->language->id); // Build attributes combinaisons - $combinaisons = $products[$i]->getAttributeCombinaisons($this->context->language->id); + $combinaisons = $products[$i]->getAttributeCombinations($this->context->language->id); foreach ($combinaisons as $k => $combinaison) { $comb_infos = Supplier::getProductInformationsBySupplier($this->object->id, diff --git a/controllers/admin/AdminTranslationsController.php b/controllers/admin/AdminTranslationsController.php index 3ecc9c02d..36ee4ae84 100644 --- a/controllers/admin/AdminTranslationsController.php +++ b/controllers/admin/AdminTranslationsController.php @@ -984,16 +984,20 @@ class AdminTranslationsControllerCore extends AdminController $prefix_key = Tools::toCamelCase(str_replace(_PS_ADMIN_DIR_.DIRECTORY_SEPARATOR.'themes', '', $tpl), true); $pos = strrpos($prefix_key, DIRECTORY_SEPARATOR); $tmp = substr($prefix_key, 0, $pos); - $prefix_key = 'Admin'.ucfirst(substr($tmp, strrpos($tmp, DIRECTORY_SEPARATOR) + 1, $pos)); + + if (preg_match("#controllers#", $tmp)) + { + $parentClass = explode('\\', $tmp); + $key = array_search('controllers', $parentClass); + $prefix_key = 'Admin'.ucfirst($parentClass[$key + 1]); + } + else + $prefix_key = 'Admin'.ucfirst(substr($tmp, strrpos($tmp, DIRECTORY_SEPARATOR) + 1, $pos)); // Adding list, form, option in Helper Translations if ($prefix_key == 'AdminHelper' || $prefix_key == 'AdminList' || $prefix_key == 'AdminOptions' || $prefix_key == 'AdminForm') $prefix_key = 'Helper'; - // Adding the folder products/combinaison/ in AdminProducts Translations - if ($prefix_key == 'AdminCombinaison') - $prefix_key = 'AdminProducts/combinaison'; - // Adding the folder backup/download/ in AdminBackup Translations if ($prefix_key == 'AdminDownload') $prefix_key = 'AdminBackup'; diff --git a/modules/statsproduct/statsproduct.php b/modules/statsproduct/statsproduct.php index d98d6bd80..a7f7b941a 100644 --- a/modules/statsproduct/statsproduct.php +++ b/modules/statsproduct/statsproduct.php @@ -371,7 +371,7 @@ class StatsProduct extends ModuleGraph $combArray = array(); $assocNames = array(); - $combinaisons = $product->getAttributeCombinaisons((int)$this->getLang()); + $combinaisons = $product->getAttributeCombinations((int)$this->getLang()); foreach ($combinaisons as $k => $combinaison) $combArray[$combinaison['id_product_attribute']][] = array('group' => $combinaison['group_name'], 'attr' => $combinaison['attribute_name']); foreach ($combArray as $id_product_attribute => $product_attribute) diff --git a/translations/fr/admin.php b/translations/fr/admin.php index ccc2808b3..b5d5c81d3 100644 --- a/translations/fr/admin.php +++ b/translations/fr/admin.php @@ -7,9 +7,6 @@ $_LANGADM['AdminCmsContent62381fc27e62649a16182a616de3f7ea'] = 'Catégorie actue $_LANGADM['AdminPdf788ebe0fc7fc09c0c20069659af8e139'] = 'Configuration des PDF dans la langue courante :'; $_LANGADM['AdminPdf125902509918b45d53071e760d5c97c1'] = 'Utiliser le disque dur pour le cache'; $_LANGADM['AdminPdf4547c92e3493ab518fc274b8be9427c3'] = 'Economise la mémoire mais ralentit le processus.'; -$_LANGADM['AdminProducts/combinaison1245fb9eadb8049b570d7bdc0936aa55'] = 'Modifier cette déclinaison'; -$_LANGADM['AdminProducts/combinaisonf9c128cbc52bb845834c0d3e62b424ea'] = 'La ligne en bleu est la déclinaison par défaut.'; -$_LANGADM['AdminProducts/combinaison55110f4c6a2c90b143c6fcd295cb7bc7'] = 'Une déclinaison par défaut doit être désignée pour chaque produit.'; $_LANGADM['AdminNotFound55a6c776077ef389722620bcfd4a2dbf'] = 'Le controlleur'; $_LANGADM['AdminNotFound0bafa728272543abdcdbc58357b00d2f'] = 'est manquant ou invalide'; $_LANGADM['AdminNotFoundd19e8ab738bcb64f6c960a6ee116b3b5'] = 'Aller à l\'accueil'; @@ -26,6 +23,14 @@ $_LANGADM['AdminSubDomains3547c78d942e86c858f271e467adb778'] = 'Sous-domaines :' $_LANGADM['AdminSubDomains6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères invalides'; $_LANGADM['AdminSubDomains38fb7d24e0d60a048f540ecb18e13376'] = 'Sauvegarder'; $_LANGADM['AdminSubDomainsfeedb03bed3f1e5339e12ecffc46eaba'] = 'Les cookies sont distincts pour chaque sous-domaine de votre site internet. Si vous souhaitez utiliser le même cookie pour tous, ajoutez ici ceux qui sont utilisés par votre boutique. Le plus commun d\'entre eux est \"www\".'; +$_LANGADM['AdminProfilesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminProfilese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; +$_LANGADM['AdminProfilesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminProfiles49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminProfilesb2d77645b299d0652be9f8871fa5aab7'] = 'Profils'; +$_LANGADM['AdminProfiles4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminProfiles38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminProfiles4901062927f176fea0548821fe6a8625'] = 'Pour des raisons de sécurité, vous ne pouvez pas supprimer le profil Administrateur'; $_LANGADM['AdminOutstanding4e065ba1bec1d62b2d5450256612fa96'] = 'Numéro de facture'; $_LANGADM['AdminOutstanding44749712dbec183e983dcd78a7736c41'] = 'Date'; $_LANGADM['AdminOutstandingce26601dac0dea138b7295f02b7620a7'] = 'Client'; @@ -42,23 +47,6 @@ $_LANGADM['AdminTaxRules258f49887ef8d14ac268c92b02503aaa'] = 'Croissant'; $_LANGADM['AdminTaxRules14e4d5e97b5a2c7780c4f23b7612a67b'] = 'Cette taxe uniquement'; $_LANGADM['AdminTaxRules3b1ea6c0a5c48dc45e304039e30352bf'] = 'Combiner avec les autres'; $_LANGADM['AdminTaxRules7f8f392e0c47b730d773b4ddd9448fba'] = 'Une après l\'autre'; -$_LANGADM['AdminProfilesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminProfilese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; -$_LANGADM['AdminProfilesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminProfiles49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminProfilesb2d77645b299d0652be9f8871fa5aab7'] = 'Profils'; -$_LANGADM['AdminProfiles4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminProfiles38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminProfiles4901062927f176fea0548821fe6a8625'] = 'Pour des raisons de sécurité, vous ne pouvez pas supprimer le profil Administrateur'; -$_LANGADM['AdminOrderMessaged3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminOrderMessagee25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; -$_LANGADM['AdminOrderMessageb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminOrderMessage49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminOrderMessage4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message'; -$_LANGADM['AdminOrderMessage38d6bc03067212bb0c2633f8a57d5881'] = 'Messages prédéfinis'; -$_LANGADM['AdminOrderMessage4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminOrderMessage940663fd4428d2c86f9a4780b6574028'] = 'Message :'; -$_LANGADM['AdminOrderMessage38fb7d24e0d60a048f540ecb18e13376'] = 'Sauvegarder'; $_LANGADM['AdminAccountingManagement0a00c22a3a2a56e14c21e34d92f5a14b'] = 'Veuillez sélectionner la boutique que vous souhaiter configurer'; $_LANGADM['AdminAccountingManagement3d87210607b465011fdf6efd18217782'] = 'Gestion comptabilité'; $_LANGADM['AdminAccountingManagementc9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder'; @@ -68,6 +56,15 @@ $_LANGADM['AdminAccountingManagement0f26e4f64d58beb4d924627c707e43ad'] = 'Numér $_LANGADM['AdminAccountingManagement9949d6d5e347ca9d0da84520de395f89'] = 'Configurer le numéro de compte pour la zone :'; $_LANGADM['AdminAccountingManagementa8e0a285de8593b0f978b33fb620179e'] = 'Numéro par défaut pour cette boutique'; $_LANGADM['AdminAccountingManagement30d3e6fd5ca592e6a2b9c87b591eca9e'] = 'Si une l\'un des champ zone suivant est vide, le numéro par défaut sera appliqué'; +$_LANGADM['AdminOrderMessaged3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminOrderMessagee25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; +$_LANGADM['AdminOrderMessageb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminOrderMessage49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminOrderMessage4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message'; +$_LANGADM['AdminOrderMessage38d6bc03067212bb0c2633f8a57d5881'] = 'Messages prédéfinis'; +$_LANGADM['AdminOrderMessage4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminOrderMessage940663fd4428d2c86f9a4780b6574028'] = 'Message :'; +$_LANGADM['AdminOrderMessage38fb7d24e0d60a048f540ecb18e13376'] = 'Sauvegarder'; $_LANGADM['AdminSearchEnginesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminSearchEnginese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; $_LANGADM['AdminSearchEnginesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -120,19 +117,6 @@ $_LANGADM['AdminStats846495f9ceed11accf8879f555936a7d'] = 'Navigation'; $_LANGADM['AdminStats266e72d21719a5d0c7b8527c44c08f99'] = 'Pas de module installé'; $_LANGADM['AdminStats8290fb626ffacf21450997f25967efeb'] = 'Pas de module trouvé'; $_LANGADM['AdminStatsb9f69fde28fbf3d71afa1bc9e3b7dab8'] = 'Veuillez choisir un module dans la colonne de gauche'; -$_LANGADM['AdminTagsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminTags4994a8ffeba4ac3140beb89e8d41f174'] = 'Langue'; -$_LANGADM['AdminTags49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminTags068f80c7519d0528fb08e82137a72131'] = 'Produits'; -$_LANGADM['AdminTagsd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminTagse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; -$_LANGADM['AdminTagsc101058e7ea21bbbf2a5ac893088e90b'] = 'Tag'; -$_LANGADM['AdminTags4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminTags0885f0c211f74834f0109c5abaf4cdc4'] = 'Language :'; -$_LANGADM['AdminTags38fb7d24e0d60a048f540ecb18e13376'] = 'Sauvegarder'; -$_LANGADM['AdminTags21a315eb210debe100cabc085ccf6f50'] = 'double cliquer pour déplacer vers une autre colonne'; -$_LANGADM['AdminTags1063e38cb53d94d386f21227fcd84717'] = 'Supprimer'; -$_LANGADM['AdminTagsec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter'; $_LANGADM['AdminAccess151648106e4bf98297882ea2ea1c4b0e'] = 'Mise à jour réussie'; $_LANGADM['AdminAccessd939c2e53e1bfdb51cddcc37d50db438'] = 'Erreur lors de la mise à jour'; $_LANGADM['AdminAccess7015777bcc86cd0c5e4819310d62b040'] = 'Onglets'; @@ -146,6 +130,19 @@ $_LANGADM['AdminAccessbf17ac149e2e7a530c677e9bd51d3fd2'] = 'Modules'; $_LANGADM['AdminAccessf1206f9fadc5ce41694f69129aecac26'] = 'Configurer'; $_LANGADM['AdminAccess501faad2df9c231576549a068fcf61ca'] = 'Pas de modules installés'; $_LANGADM['AdminAccess05fe96d753968b151a15b748140e4467'] = 'Les permissions des administrateur ne peuvent pas être modifiés.'; +$_LANGADM['AdminTagsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminTags4994a8ffeba4ac3140beb89e8d41f174'] = 'Langue'; +$_LANGADM['AdminTags49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminTags068f80c7519d0528fb08e82137a72131'] = 'Produits'; +$_LANGADM['AdminTagsd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminTagse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; +$_LANGADM['AdminTagsc101058e7ea21bbbf2a5ac893088e90b'] = 'Tag'; +$_LANGADM['AdminTags4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminTags0885f0c211f74834f0109c5abaf4cdc4'] = 'Language :'; +$_LANGADM['AdminTags38fb7d24e0d60a048f540ecb18e13376'] = 'Sauvegarder'; +$_LANGADM['AdminTags21a315eb210debe100cabc085ccf6f50'] = 'double cliquer pour déplacer vers une autre colonne'; +$_LANGADM['AdminTags1063e38cb53d94d386f21227fcd84717'] = 'Supprimer'; +$_LANGADM['AdminTagsec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter'; $_LANGADM['AdminZonesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminZonesb3ff996fe5c77610359114835baf9b38'] = 'Zone'; $_LANGADM['AdminZones00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; @@ -187,21 +184,6 @@ $_LANGADM['AdminQuickAccesses4edbdc3e1b62db73d670ee1231c14c8b'] = 'Ouvrir dans u $_LANGADM['AdminQuickAccesses00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; $_LANGADM['AdminQuickAccessesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; $_LANGADM['AdminQuickAccesses38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminSlipb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminSlip6fde42aa0857eb92fc0d0c3fb1c6c8b7'] = 'ID Commande'; -$_LANGADM['AdminSlip446faa7da2d42ba4ffeda73cb119dd91'] = 'Date d\'émission'; -$_LANGADM['AdminSlipd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminSlipe25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminSlipc95ed58f8c9573f7d58667e6847758d9'] = 'Avoir'; -$_LANGADM['AdminSlip9a0e3730cac2d4abdda4cfa04483318e'] = 'Imprimer un PDF'; -$_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['AdminRangePriced3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminRangePricee25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; $_LANGADM['AdminRangePriceb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -217,6 +199,21 @@ $_LANGADM['AdminRangePrice2c39f2ba36ea6da8583198d554719eb1'] = 'Début de tranch $_LANGADM['AdminRangePrice33caa076f23f453dd4061726f3706325'] = 'A :'; $_LANGADM['AdminRangePrice6bf0217a0db567ce8495e5125a1dfffb'] = 'Fin de tranche (exclu)'; $_LANGADM['AdminRangePrice38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminSlipb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminSlip6fde42aa0857eb92fc0d0c3fb1c6c8b7'] = 'ID Commande'; +$_LANGADM['AdminSlip446faa7da2d42ba4ffeda73cb119dd91'] = 'Date d\'émission'; +$_LANGADM['AdminSlipd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminSlipe25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_LANGADM['AdminSlipc95ed58f8c9573f7d58667e6847758d9'] = 'Avoir'; +$_LANGADM['AdminSlip9a0e3730cac2d4abdda4cfa04483318e'] = 'Imprimer un PDF'; +$_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['AdminRangeWeightd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminRangeWeighte25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; $_LANGADM['AdminRangeWeightb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -247,6 +244,22 @@ $_LANGADM['AdminPaymenta75b01d1ff66cd0a327bda1effa71dec'] = 'Liste de modules de $_LANGADM['AdminPayment1f3a05f7b45df8e5c5cafaf0485eedd5'] = 'Cliquez pour voir la liste des modules de paiement.'; $_LANGADM['AdminPaymentdba77f97d76421a973d8e4903ec1b056'] = 'Restrictions des modules de paiement'; $_LANGADM['AdminPaymentcf7da676516ac041a93fd91755fa40f9'] = 'Aucun module de paiement installés'; +$_LANGADM['AdminDbe307db07b3975fef922a80d07455ee5e'] = 'Base de données'; +$_LANGADM['AdminDb505de52d5ae227b6e8acb02dce2a0c4d'] = 'Serveur :'; +$_LANGADM['AdminDb67cfd6717606cadb04e8ae03082a0182'] = 'IP ou nom du serveur, \'localhost\' fonctionnera dans la plupart des cas'; +$_LANGADM['AdminDb006e7be42e56d810865222669c716f9e'] = 'Base de données :'; +$_LANGADM['AdminDb9222f8688de5dfd4dabc06fffe8c6aa0'] = 'Nom de la base de données (ex. \"prestashop\")'; +$_LANGADM['AdminDbf72ba2e5f0388494cc5041adad99581f'] = 'Préfixe :'; +$_LANGADM['AdminDb5ff9df198222a96f26bf2cb279d83bd8'] = 'Utilisateur :'; +$_LANGADM['AdminDbb341a59d5636ed3d6a819137495b08a0'] = 'Mot de passe :'; +$_LANGADM['AdminDb3f783e6afc73242779dde81c7825def0'] = 'Laisser vide si aucun changement'; +$_LANGADM['AdminDb51c45b795d5d18a3e4e0c37e8b20a141'] = 'Table'; +$_LANGADM['AdminDbb0d1963f24d64313f9c8d83662cc551a'] = 'Moteur de tables '; +$_LANGADM['AdminDb6c1375701d87f2636b01cf951d0a375b'] = 'Moteur MySQL'; +$_LANGADM['AdminDbac7484fa4e36b9b26ceb27526ee7268f'] = 'Changer le moteur en'; +$_LANGADM['AdminDb38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminDb6bb09f0abb00bcba314068abab6fecb7'] = 'est déjà présent dans'; +$_LANGADM['AdminDba7fd7e3f904a981a4952454d79a806e8'] = 'Impossible de changer de moteur pour'; $_LANGADM['AdminAttributeGeneratorc0babe5601b3f91313d53267c3c7ec24'] = 'Revenir au produit'; $_LANGADM['AdminAttributeGenerator13cdf2d0d1b996ad3a141e297c62ea6b'] = 'Cette fonctionnalité a été désactivée, vous pouvez l\'activer sur cette page:'; $_LANGADM['AdminAttributeGenerator9a63ec735f057c1366284bda67eee7de'] = 'Performances'; @@ -279,39 +292,6 @@ $_LANGADM['AdminContacts00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; $_LANGADM['AdminContactsb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; $_LANGADM['AdminContacts0a958d0b68cae1805a8f64cdcddb821b'] = 'Informations complémentaires au sujet de ce contact'; $_LANGADM['AdminContacts38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminDbe307db07b3975fef922a80d07455ee5e'] = 'Base de données'; -$_LANGADM['AdminDb505de52d5ae227b6e8acb02dce2a0c4d'] = 'Serveur :'; -$_LANGADM['AdminDb67cfd6717606cadb04e8ae03082a0182'] = 'IP ou nom du serveur, \'localhost\' fonctionnera dans la plupart des cas'; -$_LANGADM['AdminDb006e7be42e56d810865222669c716f9e'] = 'Base de données :'; -$_LANGADM['AdminDb9222f8688de5dfd4dabc06fffe8c6aa0'] = 'Nom de la base de données (ex. \"prestashop\")'; -$_LANGADM['AdminDbf72ba2e5f0388494cc5041adad99581f'] = 'Préfixe :'; -$_LANGADM['AdminDb5ff9df198222a96f26bf2cb279d83bd8'] = 'Utilisateur :'; -$_LANGADM['AdminDbb341a59d5636ed3d6a819137495b08a0'] = 'Mot de passe :'; -$_LANGADM['AdminDb3f783e6afc73242779dde81c7825def0'] = 'Laisser vide si aucun changement'; -$_LANGADM['AdminDb51c45b795d5d18a3e4e0c37e8b20a141'] = 'Table'; -$_LANGADM['AdminDbb0d1963f24d64313f9c8d83662cc551a'] = 'Moteur de tables '; -$_LANGADM['AdminDb6c1375701d87f2636b01cf951d0a375b'] = 'Moteur MySQL'; -$_LANGADM['AdminDbac7484fa4e36b9b26ceb27526ee7268f'] = 'Changer le moteur en'; -$_LANGADM['AdminDb38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminDb6bb09f0abb00bcba314068abab6fecb7'] = 'est déjà présent dans'; -$_LANGADM['AdminDba7fd7e3f904a981a4952454d79a806e8'] = 'Impossible de changer de moteur pour'; -$_LANGADM['AdminContact63406c9482c644975f227cc93788e8fb'] = 'Choisissez votre pays'; -$_LANGADM['AdminContactffea2d321be109fc7243cfeb515fe257'] = 'Choisissez votre pays (si applicable)'; -$_LANGADM['AdminContact61f0fa926f97eafb392975ed79cebb4a'] = 'Nom de la boutique :'; -$_LANGADM['AdminContact792ccc0c7f3d0d20366fbbf44ef7cd78'] = 'Affiché dans les en-têtes des pages et des emails'; -$_LANGADM['AdminContact237726599268adc200964601cdafeb16'] = 'Adresse e-mail de la boutique :'; -$_LANGADM['AdminContact0188aaac1db951dc90bced9ecd606c04'] = 'Affichée dans les emails envoyés aux clients'; -$_LANGADM['AdminContactd7ceaa3ddb4fc6884046456463ecb258'] = 'Immatriculation :'; -$_LANGADM['AdminContact76cee53a1d378b50e5bc3aa50ab3b4c0'] = 'Immatriculation de la boutique (ex : SIRET, RCS, ...)'; -$_LANGADM['AdminContact3c720ca57528095461f52d40d26d956a'] = 'Adresse du magasin (ligne 1):'; -$_LANGADM['AdminContacte0ef7a9e00e6b6189c8da23da3fe79f8'] = 'Code postal :'; -$_LANGADM['AdminContactbffb711ec36f280459d11dce315da72f'] = 'Ville :'; -$_LANGADM['AdminContactf64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; -$_LANGADM['AdminContact18325105de95083e4a1d10b78f29c2bc'] = 'Etat :'; -$_LANGADM['AdminContact673ae02fffb72f0fe68a66f096a01347'] = 'Téléphone :'; -$_LANGADM['AdminContact0e2fb5b02182fd28b9b96e86ed27838f'] = 'Fax :'; -$_LANGADM['AdminContact5dd532f0a63d89c5af0243b74732f63c'] = 'Coordonnées'; -$_LANGADM['AdminContact38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminGeolocationc95467b224ae2a3f8a4c12ddbbb0448e'] = 'Géolocalisation par IP :'; $_LANGADM['AdminGeolocation5ce2a0bcb8967528a33c2c0d31cbb194'] = 'Cette option vous permet, entre autres, de restreindre l\'accès à votre boutique dans certains pays, voir plus bas.'; $_LANGADM['AdminGeolocationdae8ace18bdcbcc6ae5aece263e14fe8'] = 'Options'; @@ -329,6 +309,41 @@ $_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['AdminContact63406c9482c644975f227cc93788e8fb'] = 'Choisissez votre pays'; +$_LANGADM['AdminContactffea2d321be109fc7243cfeb515fe257'] = 'Choisissez votre pays (si applicable)'; +$_LANGADM['AdminContact61f0fa926f97eafb392975ed79cebb4a'] = 'Nom de la boutique :'; +$_LANGADM['AdminContact792ccc0c7f3d0d20366fbbf44ef7cd78'] = 'Affiché dans les en-têtes des pages et des emails'; +$_LANGADM['AdminContact237726599268adc200964601cdafeb16'] = 'Adresse e-mail de la boutique :'; +$_LANGADM['AdminContact0188aaac1db951dc90bced9ecd606c04'] = 'Affichée dans les emails envoyés aux clients'; +$_LANGADM['AdminContactd7ceaa3ddb4fc6884046456463ecb258'] = 'Immatriculation :'; +$_LANGADM['AdminContact76cee53a1d378b50e5bc3aa50ab3b4c0'] = 'Immatriculation de la boutique (ex : SIRET, RCS, ...)'; +$_LANGADM['AdminContact3c720ca57528095461f52d40d26d956a'] = 'Adresse du magasin (ligne 1):'; +$_LANGADM['AdminContacte0ef7a9e00e6b6189c8da23da3fe79f8'] = 'Code postal :'; +$_LANGADM['AdminContactbffb711ec36f280459d11dce315da72f'] = 'Ville :'; +$_LANGADM['AdminContactf64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; +$_LANGADM['AdminContact18325105de95083e4a1d10b78f29c2bc'] = 'Etat :'; +$_LANGADM['AdminContact673ae02fffb72f0fe68a66f096a01347'] = 'Téléphone :'; +$_LANGADM['AdminContact0e2fb5b02182fd28b9b96e86ed27838f'] = 'Fax :'; +$_LANGADM['AdminContact5dd532f0a63d89c5af0243b74732f63c'] = 'Coordonnées'; +$_LANGADM['AdminContact38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminStockInstantState63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; +$_LANGADM['AdminStockInstantState52eb5928a34db3e3da7ba52b0644273b'] = 'EAN13'; +$_LANGADM['AdminStockInstantStatefbd99ad01b92dbafc686772a39e3d065'] = 'UPC'; +$_LANGADM['AdminStockInstantState49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminStockInstantStatea0447ea4abb174bcab8e35a69f094930'] = 'Prix HT'; +$_LANGADM['AdminStockInstantState3e6564c044acd49698fd70c9aaa79bb1'] = 'Valorisation'; +$_LANGADM['AdminStockInstantState3601cb57c7ad49e04d634fea3638ee75'] = 'Valorisation de la quantité physique. La somme (pour tous les prix) n\'est pas disponible pour tous les entrepôts. Veuillez filtrer par entrepôt.'; +$_LANGADM['AdminStockInstantStatea094699b1837834e13875a06773bcf28'] = 'Quantité physique'; +$_LANGADM['AdminStockInstantState22f992f93544057809c0c09ad04cf92a'] = 'Quantité utilisable'; +$_LANGADM['AdminStockInstantStatea32b05df1205bc21c7d037d8f4c5ca40'] = 'Quantité réelle'; +$_LANGADM['AdminStockInstantState6ff095679d5d2d4432b5271ed232e384'] = 'Tous les entrepôts'; +$_LANGADM['AdminStockInstantState171f36a48d1d3df7bd05d18352e47690'] = 'Cette interface vous permet d\'afficher des informations détaillées sur l\'état de vos stocks, par entrepôts.'; +$_LANGADM['AdminStockInstantStateedc6fdf20f39ce77df67370431e4aa6a'] = 'Il n\'y a pas de données à exporter en CSV.'; +$_LANGADM['AdminStockInstantStateebb578ad0c981404fc54dd1712d042d2'] = 'Exporter les quantités (CSV)'; +$_LANGADM['AdminStockInstantState55eab6e0dcbd45a13633097ebf3b6c4a'] = 'Exporter les prix (CSV)'; +$_LANGADM['AdminStockInstantState3b6d721b3c632aa3746694394b108f81'] = 'etat_instantane_du_stock_quantites'; +$_LANGADM['AdminStockInstantStatea27187ddf24580adbf4a64394201a404'] = 'etat_instantane_du_stock_prix'; +$_LANGADM['AdminStockInstantState18fd021e2daf48300d98147076727f75'] = 'Filtrer par entrepôt :'; $_LANGADM['AdminLogin34bdd7b9823059fa742afab7be9d4c58'] = 'Votre mot de passe vous a été envoyé par e-mail'; $_LANGADM['AdminLogin6357d3551190ec7e79371a8570121d3a'] = 'Il y a'; $_LANGADM['AdminLogin4ce81305b7edb043d0a7a5c75cab17d0'] = 'Il y a'; @@ -365,43 +380,6 @@ $_LANGADM['AdminAttachments2db1c4802b06f0d3979fe280bacfd5f2'] = 'dépasse le poi $_LANGADM['AdminAttachments6dd757cbdd852a16f222a7d1a07eab3e'] = 'Mb'; $_LANGADM['AdminAttachments06d5d60cedc3946089462c34c719b4d6'] = 'Le fichier n\'existe pas ou celui-ci n\'est pas téléchargeable, vérifiez la limite de taille des fichiers téléchargeables configurée sur votre serveur.'; $_LANGADM['AdminAttachments4a21a191879a23aa2a27829300da95f5'] = 'Cet pièce jointe est utilisé par les produits suivants:'; -$_LANGADM['AdminStockInstantState63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; -$_LANGADM['AdminStockInstantState52eb5928a34db3e3da7ba52b0644273b'] = 'EAN13'; -$_LANGADM['AdminStockInstantStatefbd99ad01b92dbafc686772a39e3d065'] = 'UPC'; -$_LANGADM['AdminStockInstantState49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminStockInstantStatea0447ea4abb174bcab8e35a69f094930'] = 'Prix HT'; -$_LANGADM['AdminStockInstantState3e6564c044acd49698fd70c9aaa79bb1'] = 'Valorisation'; -$_LANGADM['AdminStockInstantState3601cb57c7ad49e04d634fea3638ee75'] = 'Valorisation de la quantité physique. La somme (pour tous les prix) n\'est pas disponible pour tous les entrepôts. Veuillez filtrer par entrepôt.'; -$_LANGADM['AdminStockInstantStatea094699b1837834e13875a06773bcf28'] = 'Quantité physique'; -$_LANGADM['AdminStockInstantState22f992f93544057809c0c09ad04cf92a'] = 'Quantité utilisable'; -$_LANGADM['AdminStockInstantStatea32b05df1205bc21c7d037d8f4c5ca40'] = 'Quantité réelle'; -$_LANGADM['AdminStockInstantState6ff095679d5d2d4432b5271ed232e384'] = 'Tous les entrepôts'; -$_LANGADM['AdminStockInstantState171f36a48d1d3df7bd05d18352e47690'] = 'Cette interface vous permet d\'afficher des informations détaillées sur l\'état de vos stocks, par entrepôts.'; -$_LANGADM['AdminStockInstantStateedc6fdf20f39ce77df67370431e4aa6a'] = 'Il n\'y a pas de données à exporter en CSV.'; -$_LANGADM['AdminStockInstantStateebb578ad0c981404fc54dd1712d042d2'] = 'Exporter les quantités (CSV)'; -$_LANGADM['AdminStockInstantState55eab6e0dcbd45a13633097ebf3b6c4a'] = 'Exporter les prix (CSV)'; -$_LANGADM['AdminStockInstantState3b6d721b3c632aa3746694394b108f81'] = 'etat_instantane_du_stock_quantites'; -$_LANGADM['AdminStockInstantStatea27187ddf24580adbf4a64394201a404'] = 'etat_instantane_du_stock_prix'; -$_LANGADM['AdminStockInstantState18fd021e2daf48300d98147076727f75'] = 'Filtrer par entrepôt :'; -$_LANGADM['AdminGendersd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminGenderse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_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['AdminLogsd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminLogse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; $_LANGADM['AdminLogsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -421,46 +399,25 @@ $_LANGADM['AdminLogsb80c52e7f679fba3c2837b42705fe779'] = 'A but informatif'; $_LANGADM['AdminLogs0eaadb4fcb48a0a0ed7bc9868be9fbaa'] = 'Avertissement'; $_LANGADM['AdminLogs902b0d55fddef6f8d651fe1035b7d4bd'] = 'Erreur'; $_LANGADM['AdminLogs2d7a39ee844a8ac84031dcd289630dd9'] = 'Problème majeur (erreur critique)'; -$_LANGADM['AdminStockMvt487375a97166f9edb015efb7b30fb433'] = 'Cette interface vous permet d\'afficher les mouvements de stock pour un entrepôt donné.'; -$_LANGADM['AdminStockMvt63d5049791d9d79d86e9a108b0a999ca'] = 'Reférence'; -$_LANGADM['AdminStockMvt3ac9c4dfce513c8634996702a4bb9fac'] = 'EAN 13'; -$_LANGADM['AdminStockMvtfbd99ad01b92dbafc686772a39e3d065'] = 'UPC'; -$_LANGADM['AdminStockMvt49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminStockMvt6416e8cb5fc0a208d94fa7f5a300dbc4'] = 'Entrepôt'; -$_LANGADM['AdminStockMvt31c6b3fdfaaa80dba2dbf92a4600524c'] = 'Signe'; -$_LANGADM['AdminStockMvt6f15bdfa71aa83b0d197cad75757d580'] = 'Incrémenter'; -$_LANGADM['AdminStockMvt6182913ea7b5c02fe2773ea87177d4f9'] = 'Décrémenter'; -$_LANGADM['AdminStockMvt694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité'; -$_LANGADM['AdminStockMvtc1895ddff0b761649e508b88d52e9291'] = 'Prix HT'; -$_LANGADM['AdminStockMvtb021df6aac4654c454f46c77646e745f'] = 'Label'; -$_LANGADM['AdminStockMvtf8c8b903cb2e4f297e4b96d4b9c1e98a'] = 'Employé'; -$_LANGADM['AdminStockMvt44749712dbec183e983dcd78a7736c41'] = 'Date'; -$_LANGADM['AdminStockMvt6ff095679d5d2d4432b5271ed232e384'] = 'Tous les entrepôts'; -$_LANGADM['AdminStockMvtedc6fdf20f39ce77df67370431e4aa6a'] = 'Il y a pas de donnée à exporter'; -$_LANGADM['AdminStockMvt673032420d7e0ee43d76c93cc4b157d5'] = 'Le nom de ce produit n\'est pas disponible. Il a peut être été supprimé du système.'; -$_LANGADM['AdminStockMvte71ad3197425e47e1a006c6466e9b6c3'] = 'Export (CSV)'; -$_LANGADM['AdminStockMvt0013fc9258c5bf8c33b17c40495ba3f0'] = 'stock_mvt'; -$_LANGADM['AdminStockMvt745d3a8bea56150e93e11486c885841e'] = 'Filtrer les mouvements par entrepôt :'; -$_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['AdminGendersd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminGenderse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_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['AdminCmsCategoriesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminCmsCategoriese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; $_LANGADM['AdminCmsCategoriesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -481,6 +438,46 @@ $_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['AdminStockMvt487375a97166f9edb015efb7b30fb433'] = 'Cette interface vous permet d\'afficher les mouvements de stock pour un entrepôt donné.'; +$_LANGADM['AdminStockMvt63d5049791d9d79d86e9a108b0a999ca'] = 'Reférence'; +$_LANGADM['AdminStockMvt3ac9c4dfce513c8634996702a4bb9fac'] = 'EAN 13'; +$_LANGADM['AdminStockMvtfbd99ad01b92dbafc686772a39e3d065'] = 'UPC'; +$_LANGADM['AdminStockMvt49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminStockMvt6416e8cb5fc0a208d94fa7f5a300dbc4'] = 'Entrepôt'; +$_LANGADM['AdminStockMvt31c6b3fdfaaa80dba2dbf92a4600524c'] = 'Signe'; +$_LANGADM['AdminStockMvt6f15bdfa71aa83b0d197cad75757d580'] = 'Incrémenter'; +$_LANGADM['AdminStockMvt6182913ea7b5c02fe2773ea87177d4f9'] = 'Décrémenter'; +$_LANGADM['AdminStockMvt694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité'; +$_LANGADM['AdminStockMvtc1895ddff0b761649e508b88d52e9291'] = 'Prix HT'; +$_LANGADM['AdminStockMvtb021df6aac4654c454f46c77646e745f'] = 'Label'; +$_LANGADM['AdminStockMvtf8c8b903cb2e4f297e4b96d4b9c1e98a'] = 'Employé'; +$_LANGADM['AdminStockMvt44749712dbec183e983dcd78a7736c41'] = 'Date'; +$_LANGADM['AdminStockMvt6ff095679d5d2d4432b5271ed232e384'] = 'Tous les entrepôts'; +$_LANGADM['AdminStockMvtedc6fdf20f39ce77df67370431e4aa6a'] = 'Il y a pas de donnée à exporter'; +$_LANGADM['AdminStockMvt673032420d7e0ee43d76c93cc4b157d5'] = 'Le nom de ce produit n\'est pas disponible. Il a peut être été supprimé du système.'; +$_LANGADM['AdminStockMvte71ad3197425e47e1a006c6466e9b6c3'] = 'Export (CSV)'; +$_LANGADM['AdminStockMvt0013fc9258c5bf8c33b17c40495ba3f0'] = 'stock_mvt'; +$_LANGADM['AdminStockMvt745d3a8bea56150e93e11486c885841e'] = 'Filtrer les mouvements par entrepôt :'; $_LANGADM['AdminTabsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminTabs49ee3087348e8d44e1feda1917443987'] = 'Nom'; $_LANGADM['AdminTabs817434295a673aed431435658b65d9a7'] = 'Icône'; @@ -594,31 +591,6 @@ $_LANGADM['AdminSearchb7f410ce836f60dccb8386e84687168f'] = 'Aucun produit corres $_LANGADM['AdminSearch0e1aa8d47719bc3d8b37955486b134f1'] = 'Produits correspondant à votre requête'; $_LANGADM['AdminSearch25f58a368625d6217cfb7f892e225358'] = 'Aucun client ne correspond à votre recherche'; $_LANGADM['AdminSearch09f6647acf86aef92f40591a183bf8eb'] = 'Client correspondant à votre requête'; -$_LANGADM['AdminAddressesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminAddressese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminAddressesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminAddresses20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom'; -$_LANGADM['AdminAddresses8d3f5eff9c40ee315d452392bed5309b'] = 'Nom'; -$_LANGADM['AdminAddressesdd7bf230fde8d4836917806aff6a6b27'] = 'Adresse'; -$_LANGADM['AdminAddresses77638e87a55b8747e79590defafa75c9'] = 'Code postal'; -$_LANGADM['AdminAddresses57d056ed0984166336b7879c2af3657f'] = 'Ville'; -$_LANGADM['AdminAddresses59716c97497eb9694541f7c3d37b1a4d'] = 'Pays'; -$_LANGADM['AdminAddresses284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses'; -$_LANGADM['AdminAddressesce26601dac0dea138b7295f02b7620a7'] = 'Client'; -$_LANGADM['AdminAddresses919d1ffe6c1855e790a416efa7b4cc4e'] = 'Numéro d\'identification fiscale'; -$_LANGADM['AdminAddressesea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE'; -$_LANGADM['AdminAddresseseffdb9ce6c5d44df31b89d7069c8e0fb'] = 'Alias'; -$_LANGADM['AdminAddresses6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères interdits :'; -$_LANGADM['AdminAddressesfe66abce284ec8589e7d791185b5c442'] = 'Téléphone fixe'; -$_LANGADM['AdminAddresses41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone mobile'; -$_LANGADM['AdminAddresses6311ae17c1ee52b36e68aaf4ad066387'] = 'Autre'; -$_LANGADM['AdminAddresses3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits :'; -$_LANGADM['AdminAddresses38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminAddresses1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société'; -$_LANGADM['AdminAddresses7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA'; -$_LANGADM['AdminAddressesf64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; -$_LANGADM['AdminAddresses46a2a41cc6e552044816a2d04634545d'] = 'Etat'; -$_LANGADM['AdminAddressesf90e807b74928118048a1a6fa65ebfe5'] = 'Email du client'; $_LANGADM['AdminLocalization369686331c93d55e587441143ccdf427'] = 'Localisation'; $_LANGADM['AdminLocalization1a8940a8dec839073dae5489faff67f7'] = 'Unité de poids :'; $_LANGADM['AdminLocalization659c95668841b7d6602ead454b28d4ba'] = 'L\'unité de poids de votre boutique (ex. kg ou lbs)'; @@ -669,6 +641,31 @@ $_LANGADM['AdminCmscc4fbd30d676ea2f9994b7063a8ada15'] = 'Pages dans cette catég $_LANGADM['AdminCmsef61fb324d729c341ea8ab9901e23566'] = 'Créer'; $_LANGADM['AdminCms5ece607071fe59ddc4c88dc6abfe2310'] = 'Pas de page trouvée'; $_LANGADM['AdminCms084af17ae8dce6465e3acd94a3d995c1'] = 'Votre page de CMS sera enregistrée comme brouillon'; +$_LANGADM['AdminAddressesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminAddressese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_LANGADM['AdminAddressesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminAddresses20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom'; +$_LANGADM['AdminAddresses8d3f5eff9c40ee315d452392bed5309b'] = 'Nom'; +$_LANGADM['AdminAddressesdd7bf230fde8d4836917806aff6a6b27'] = 'Adresse'; +$_LANGADM['AdminAddresses77638e87a55b8747e79590defafa75c9'] = 'Code postal'; +$_LANGADM['AdminAddresses57d056ed0984166336b7879c2af3657f'] = 'Ville'; +$_LANGADM['AdminAddresses59716c97497eb9694541f7c3d37b1a4d'] = 'Pays'; +$_LANGADM['AdminAddresses284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses'; +$_LANGADM['AdminAddressesce26601dac0dea138b7295f02b7620a7'] = 'Client'; +$_LANGADM['AdminAddresses919d1ffe6c1855e790a416efa7b4cc4e'] = 'Numéro d\'identification fiscale'; +$_LANGADM['AdminAddressesea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE'; +$_LANGADM['AdminAddresseseffdb9ce6c5d44df31b89d7069c8e0fb'] = 'Alias'; +$_LANGADM['AdminAddresses6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères interdits :'; +$_LANGADM['AdminAddressesfe66abce284ec8589e7d791185b5c442'] = 'Téléphone fixe'; +$_LANGADM['AdminAddresses41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone mobile'; +$_LANGADM['AdminAddresses6311ae17c1ee52b36e68aaf4ad066387'] = 'Autre'; +$_LANGADM['AdminAddresses3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits :'; +$_LANGADM['AdminAddresses38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminAddresses1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société'; +$_LANGADM['AdminAddresses7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA'; +$_LANGADM['AdminAddressesf64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; +$_LANGADM['AdminAddresses46a2a41cc6e552044816a2d04634545d'] = 'Etat'; +$_LANGADM['AdminAddressesf90e807b74928118048a1a6fa65ebfe5'] = 'Email du client'; $_LANGADM['AdminAccountingExport9404a084e7ff36b7d492b44444afa7d0'] = 'Export global'; $_LANGADM['AdminAccountingExport440ac606343b8a66acad0d2978786d2a'] = 'Date de la facture'; $_LANGADM['AdminAccountingExport6b2b5614a23abed4834b7cb7b91c6887'] = 'Journal'; @@ -863,37 +860,6 @@ $_LANGADM['AdminEmailsbe656d2d5c1e6f223dca152937941705'] = 'Message essai - Pres $_LANGADM['AdminEmailsdb30a86adf0ef9fbc6feb6fa5c8e23d7'] = 'Message envoyé'; $_LANGADM['AdminEmails329a07ff51a56b7ce7e8412a8bce3f8b'] = 'Erreur: merci de vérifier votre configuration'; $_LANGADM['AdminEmailse5110300599f995b9d8cfbe930fba83e'] = 'Cette adresse est invalide'; -$_LANGADM['AdminGenerator99bd735570f4e71f3596ad208f6f63c6'] = 'Impossible d\'écrire dans le fichier :'; -$_LANGADM['AdminGeneratorff75496593d3ce1584f5e974e9668330'] = 'Merci de vérifier les permissions.'; -$_LANGADM['AdminGeneratorad11acdc8759d7a20ca3b868a8db30ae'] = 'Génération du fichier Htaccess'; -$_LANGADM['AdminGenerator3f3e336e2f1fa10375efd923fca18b55'] = 'Avertissement :'; -$_LANGADM['AdminGenerator620da2256fdfaa8c903cc870221450ca'] = 'cet outil peut SEULEMENT être utilisé si vous êtes hébergé par un serveur web Apache. Merci de demander à votre hébergeur.'; -$_LANGADM['AdminGenerator53bdd80ab93282cc38ef9c605f058eba'] = 'Cet outil va générer automatiquement le fichier \".htaccess\" offrant la possibilité de procéder à la ré-écriture d\'URL de la boutique et de personnaliser les erreurs 404.'; -$_LANGADM['AdminGenerator15970c4fdbca1fc48c5b412d94e798c0'] = 'Optimisation'; -$_LANGADM['AdminGenerator32d593fb52ab5e4ae3f16844b576867d'] = 'En cochant cette case, votre fichier .htaccess sera complété automatiquement avec des directives améliorant le cache et la compression.'; -$_LANGADM['AdminGenerator1dec4f55522b828fe5dacf8478021a9e'] = 'URLs simplifiées'; -$_LANGADM['AdminGenerator223cf855cfa657eeb99550e1acd8eaa3'] = 'N\'activez cette option que si le mode rewrite est activé sur votre serveur.'; -$_LANGADM['AdminGeneratoracaa02ab1d800ce9a0b3df2e4ab8909a'] = 'Désactiver l\'option apache multivues'; -$_LANGADM['AdminGenerator7dc12aaf3ebf9e01ef5b2ec91761c26a'] = 'N\'activez cette option que si vous rencontrez des problèmes avec la redirection d\'url de certaines pages.'; -$_LANGADM['AdminGeneratorb696dfaf5a833f70d71d26d052c6eaa3'] = 'Générer le fichier \".htaccess\" en cliquant sur le bouton suivant :'; -$_LANGADM['AdminGenerator3c108dd1d7338dcc6a9face1824db1dd'] = 'Générer le fichier .htaccess'; -$_LANGADM['AdminGenerator067b367b527d0a275f99b9071dd69e28'] = 'Cela va écraser votre'; -$_LANGADM['AdminGenerator149603e6c03516362a8da23f624db945'] = 'ancien'; -$_LANGADM['AdminGenerator5b1315f64379c20167cc186f3cfed249'] = 'fichier .htaccess !'; -$_LANGADM['AdminGeneratorb8a27e47e64caa3e36c8894c3745357b'] = 'Avant de pouvoir utiliser cet outil, vous devez :'; -$_LANGADM['AdminGeneratord443c06bc05c5f7d35d95aba3ddcf817'] = '- créer un'; -$_LANGADM['AdminGenerator8052c42ab3b8aa06a3f5f788a4ddccc2'] = 'fichier .htaccess\''; -$_LANGADM['AdminGenerator93f711fc90428ec9589a70706e1866a2'] = 'fichier vide dans le dossier'; -$_LANGADM['AdminGenerator60e4943ad37920b1f95133fae1420b59'] = 'lui donner les permissions (CHMOD 666 sur les système Unix)'; -$_LANGADM['AdminGenerator345d6249c20c6319bb09edaaf536744b'] = 'Génération du fichier robots'; -$_LANGADM['AdminGenerator3b823baba7abb920bd1c18104ae7537b'] = 'Votre fichier robots.txt DOIT être à la racine de votre site internet, et nulle part ailleurs.'; -$_LANGADM['AdminGeneratorb65cc08420e484602c7c313336933452'] = 'Ex : http://www.monsite.com/robots.txt'; -$_LANGADM['AdminGenerator2129c4f9bb14dcddabb6453bfbeff246'] = 'Cet outil va générer automatiquement le fichier \"robots.txt\" offrant la possibilité de refuser l\'accès à certaines pages aux moteurs de recherche.'; -$_LANGADM['AdminGeneratorffd4c6a67eb0c56d04a5ebca5e8cbf80'] = 'Générer le fichier \"robots.txt\" en cliquant sur le bouton suivant :'; -$_LANGADM['AdminGenerator7959e21ff0b83542251ca0b4e9a62eea'] = 'Générer le fichier robots.txt'; -$_LANGADM['AdminGenerator76bdc7d3324595e5c6430ba466690cba'] = 'fichier robots.txt !'; -$_LANGADM['AdminGeneratoraa2646a667ee1cd83235786dccef4a26'] = 'robots.txt'; -$_LANGADM['AdminGeneratorc03c063bb390b0042cabd4e08ac92347'] = 'vide dans le dossier :'; $_LANGADM['AdminGroupShopd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminGroupShope25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; $_LANGADM['AdminGroupShopb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -956,6 +922,37 @@ $_LANGADM['AdminThemesff2757f66782d3897c95e230df80aa21'] = 'Répertoire créé a $_LANGADM['AdminThemes5de04250d183ca7f21b02b8f16a2416c'] = 'Ce thème est utilisé par au moins, une boutique. Veuillez d\'abord choisir un autre thème.'; $_LANGADM['AdminThemesbbb572a770006c9e0e57c9e5d4bcda90'] = 'En direct de Prestashop Addons !'; $_LANGADM['AdminThemes0ac3a6bb56ca9b829859b5c12040e3a0'] = 'Trouvez de nouveaux thèmes sur Prestashop Addons !'; +$_LANGADM['AdminGenerator99bd735570f4e71f3596ad208f6f63c6'] = 'Impossible d\'écrire dans le fichier :'; +$_LANGADM['AdminGeneratorff75496593d3ce1584f5e974e9668330'] = 'Merci de vérifier les permissions.'; +$_LANGADM['AdminGeneratorad11acdc8759d7a20ca3b868a8db30ae'] = 'Génération du fichier Htaccess'; +$_LANGADM['AdminGenerator3f3e336e2f1fa10375efd923fca18b55'] = 'Avertissement :'; +$_LANGADM['AdminGenerator620da2256fdfaa8c903cc870221450ca'] = 'cet outil peut SEULEMENT être utilisé si vous êtes hébergé par un serveur web Apache. Merci de demander à votre hébergeur.'; +$_LANGADM['AdminGenerator53bdd80ab93282cc38ef9c605f058eba'] = 'Cet outil va générer automatiquement le fichier \".htaccess\" offrant la possibilité de procéder à la ré-écriture d\'URL de la boutique et de personnaliser les erreurs 404.'; +$_LANGADM['AdminGenerator15970c4fdbca1fc48c5b412d94e798c0'] = 'Optimisation'; +$_LANGADM['AdminGenerator32d593fb52ab5e4ae3f16844b576867d'] = 'En cochant cette case, votre fichier .htaccess sera complété automatiquement avec des directives améliorant le cache et la compression.'; +$_LANGADM['AdminGenerator1dec4f55522b828fe5dacf8478021a9e'] = 'URLs simplifiées'; +$_LANGADM['AdminGenerator223cf855cfa657eeb99550e1acd8eaa3'] = 'N\'activez cette option que si le mode rewrite est activé sur votre serveur.'; +$_LANGADM['AdminGeneratoracaa02ab1d800ce9a0b3df2e4ab8909a'] = 'Désactiver l\'option apache multivues'; +$_LANGADM['AdminGenerator7dc12aaf3ebf9e01ef5b2ec91761c26a'] = 'N\'activez cette option que si vous rencontrez des problèmes avec la redirection d\'url de certaines pages.'; +$_LANGADM['AdminGeneratorb696dfaf5a833f70d71d26d052c6eaa3'] = 'Générer le fichier \".htaccess\" en cliquant sur le bouton suivant :'; +$_LANGADM['AdminGenerator3c108dd1d7338dcc6a9face1824db1dd'] = 'Générer le fichier .htaccess'; +$_LANGADM['AdminGenerator067b367b527d0a275f99b9071dd69e28'] = 'Cela va écraser votre'; +$_LANGADM['AdminGenerator149603e6c03516362a8da23f624db945'] = 'ancien'; +$_LANGADM['AdminGenerator5b1315f64379c20167cc186f3cfed249'] = 'fichier .htaccess !'; +$_LANGADM['AdminGeneratorb8a27e47e64caa3e36c8894c3745357b'] = 'Avant de pouvoir utiliser cet outil, vous devez :'; +$_LANGADM['AdminGeneratord443c06bc05c5f7d35d95aba3ddcf817'] = '- créer un'; +$_LANGADM['AdminGenerator8052c42ab3b8aa06a3f5f788a4ddccc2'] = 'fichier .htaccess\''; +$_LANGADM['AdminGenerator93f711fc90428ec9589a70706e1866a2'] = 'fichier vide dans le dossier'; +$_LANGADM['AdminGenerator60e4943ad37920b1f95133fae1420b59'] = 'lui donner les permissions (CHMOD 666 sur les système Unix)'; +$_LANGADM['AdminGenerator345d6249c20c6319bb09edaaf536744b'] = 'Génération du fichier robots'; +$_LANGADM['AdminGenerator3b823baba7abb920bd1c18104ae7537b'] = 'Votre fichier robots.txt DOIT être à la racine de votre site internet, et nulle part ailleurs.'; +$_LANGADM['AdminGeneratorb65cc08420e484602c7c313336933452'] = 'Ex : http://www.monsite.com/robots.txt'; +$_LANGADM['AdminGenerator2129c4f9bb14dcddabb6453bfbeff246'] = 'Cet outil va générer automatiquement le fichier \"robots.txt\" offrant la possibilité de refuser l\'accès à certaines pages aux moteurs de recherche.'; +$_LANGADM['AdminGeneratorffd4c6a67eb0c56d04a5ebca5e8cbf80'] = 'Générer le fichier \"robots.txt\" en cliquant sur le bouton suivant :'; +$_LANGADM['AdminGenerator7959e21ff0b83542251ca0b4e9a62eea'] = 'Générer le fichier robots.txt'; +$_LANGADM['AdminGenerator76bdc7d3324595e5c6430ba466690cba'] = 'fichier robots.txt !'; +$_LANGADM['AdminGeneratoraa2646a667ee1cd83235786dccef4a26'] = 'robots.txt'; +$_LANGADM['AdminGeneratorc03c063bb390b0042cabd4e08ac92347'] = 'vide dans le dossier :'; $_LANGADM['AdminWebservice897356954c2cd3d41b221e3f24f99bba'] = 'Clé'; $_LANGADM['AdminWebservice00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; $_LANGADM['AdminWebservice52699c78843b98f98620186a59b0a3fa'] = 'Description de la clé'; @@ -1164,44 +1161,6 @@ $_LANGADM['AdminAttributesGroups00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; $_LANGADM['AdminAttributesGroupsb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; $_LANGADM['AdminAttributesGroups08a38277b0309070706f6652eeae9a53'] = 'Bas'; $_LANGADM['AdminAttributesGroups258f49887ef8d14ac268c92b02503aaa'] = 'Haut'; -$_LANGADM['AdminEmployeesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminEmployeese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminEmployeesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminEmployees8d3f5eff9c40ee315d452392bed5309b'] = 'Nom'; -$_LANGADM['AdminEmployees20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom'; -$_LANGADM['AdminEmployees8b5dd64ab8d0b8158906796b53a200e2'] = 'Adresse e-mail'; -$_LANGADM['AdminEmployeescce99c598cfdb9773ab041d54c3d973a'] = 'Profil'; -$_LANGADM['AdminEmployees6591effcd7a95eb926b61e1519530b17'] = 'Statut'; -$_LANGADM['AdminEmployees9273a15f9ab581801b7faeeda6ca08e4'] = 'Options employés'; -$_LANGADM['AdminEmployees06a4c5177eef6113324fdb443b824023'] = 'Régénération du mot de passe'; -$_LANGADM['AdminEmployeesb0534bc7430b91d63ff484c2b3a3e1be'] = 'Temps minimum avant de redemander un nouveau mot de passe'; -$_LANGADM['AdminEmployees640fd0cc0ffa0316ae087652871f4486'] = 'minutes'; -$_LANGADM['AdminEmployees442a8f5db7f786e260bbd65c7bc0cb55'] = 'Mémorisation de la langue par défaut :'; -$_LANGADM['AdminEmployeesff37db4701ba8f1a289fc2f81cc43f9d'] = 'Autoriser les employés à mémoriser la langue par défaut de leurs formulaires'; -$_LANGADM['AdminEmployeesbafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; -$_LANGADM['AdminEmployees93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; -$_LANGADM['AdminEmployeeseb626c94531ec554f93b2b78a77c8b1b'] = 'Employés'; -$_LANGADM['AdminEmployees668a8d8d7ffe5da112b266e46b79b685'] = 'Prénom :'; -$_LANGADM['AdminEmployeesbe5e0b5d50d48b049bd0f7b57cd163f9'] = 'Nom :'; -$_LANGADM['AdminEmployeesb341a59d5636ed3d6a819137495b08a0'] = 'Mot de passe :'; -$_LANGADM['AdminEmployeesdc5e055e0c66ae48929d03a327972a58'] = 'Laisser blanc si vous ne souhaitez pas changer votre mot de passe'; -$_LANGADM['AdminEmployees2467bfdbc86d3cc7aab2130f56ce6978'] = 'Minimum 8 caractères, uniquement lettres, nombres ou tirets'; -$_LANGADM['AdminEmployees78e365acb087fd1f8d494dae0001de10'] = 'Adresse e-mail :'; -$_LANGADM['AdminEmployeesccec78d886c47adb7e5a79567d262c0d'] = 'Couleur du back office'; -$_LANGADM['AdminEmployeesc0008270d1fea195879befd65d85298f'] = 'L\'arrière plan du back office sera affiché de cette couleur. Couleurs HTML uniquement (ex :'; -$_LANGADM['AdminEmployees0885f0c211f74834f0109c5abaf4cdc4'] = 'Langue :'; -$_LANGADM['AdminEmployeesa9e4402481bd9b8e36752bf731f67eb6'] = 'Thème :'; -$_LANGADM['AdminEmployeesa26f79d46b0719d8baa3a5a7c9abda74'] = 'Le comportement quand la plage est dépassée (par ex. quand un client à un panier plus lourd que la limite de poids la plus haute)'; -$_LANGADM['AdminEmployees79f79257476673a2aea1b2a41adf3384'] = 'Montrer screencast:'; -$_LANGADM['AdminEmployees00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; -$_LANGADM['AdminEmployeesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; -$_LANGADM['AdminEmployees4d1f8c97363b784de6d8924bc655cab6'] = 'Voir la vidéo de bienvenue sur le tableau de bord du back office'; -$_LANGADM['AdminEmployees24a23d787190f2c4812ff9ab11847a72'] = 'Statut :'; -$_LANGADM['AdminEmployees41bc9496fbde8565bd5fc699e513fbd9'] = 'Autoriser cet employé à se connecter au Back Office'; -$_LANGADM['AdminEmployees9fbf3617c6172a75648e9ac0a864bb56'] = 'Profil :'; -$_LANGADM['AdminEmployees7bc873cba11f035df692c3549366c722'] = '-- Choisissez --'; -$_LANGADM['AdminEmployeesf16b5952df8d25ea30b25ff95ee8fedf'] = 'Boutique associée :'; -$_LANGADM['AdminEmployees38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminTaxRulesGroupb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminTaxRulesGroup49ee3087348e8d44e1feda1917443987'] = 'Nom'; $_LANGADM['AdminTaxRulesGroup00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; @@ -1240,6 +1199,44 @@ $_LANGADM['AdminTaxRulesGroup5f2b3818a8226aa853fc45c83783b12d'] = 'Taxe :'; $_LANGADM['AdminTaxRulesGroup7475ec0d41372a307c497acb7eeea8c4'] = 'Aucune taxe'; $_LANGADM['AdminTaxRulesGroupd181e8a886d082d932a6902bce42add8'] = '(Taxe totale :'; $_LANGADM['AdminTaxRulesGroupd0042a700e9bdf79689d63ee6846dc0e'] = 'Description :'; +$_LANGADM['AdminEmployeesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminEmployeese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_LANGADM['AdminEmployeesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminEmployees8d3f5eff9c40ee315d452392bed5309b'] = 'Nom'; +$_LANGADM['AdminEmployees20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom'; +$_LANGADM['AdminEmployees8b5dd64ab8d0b8158906796b53a200e2'] = 'Adresse e-mail'; +$_LANGADM['AdminEmployeescce99c598cfdb9773ab041d54c3d973a'] = 'Profil'; +$_LANGADM['AdminEmployees6591effcd7a95eb926b61e1519530b17'] = 'Statut'; +$_LANGADM['AdminEmployees9273a15f9ab581801b7faeeda6ca08e4'] = 'Options employés'; +$_LANGADM['AdminEmployees06a4c5177eef6113324fdb443b824023'] = 'Régénération du mot de passe'; +$_LANGADM['AdminEmployeesb0534bc7430b91d63ff484c2b3a3e1be'] = 'Temps minimum avant de redemander un nouveau mot de passe'; +$_LANGADM['AdminEmployees640fd0cc0ffa0316ae087652871f4486'] = 'minutes'; +$_LANGADM['AdminEmployees442a8f5db7f786e260bbd65c7bc0cb55'] = 'Mémorisation de la langue par défaut :'; +$_LANGADM['AdminEmployeesff37db4701ba8f1a289fc2f81cc43f9d'] = 'Autoriser les employés à mémoriser la langue par défaut de leurs formulaires'; +$_LANGADM['AdminEmployeesbafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; +$_LANGADM['AdminEmployees93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; +$_LANGADM['AdminEmployeeseb626c94531ec554f93b2b78a77c8b1b'] = 'Employés'; +$_LANGADM['AdminEmployees668a8d8d7ffe5da112b266e46b79b685'] = 'Prénom :'; +$_LANGADM['AdminEmployeesbe5e0b5d50d48b049bd0f7b57cd163f9'] = 'Nom :'; +$_LANGADM['AdminEmployeesb341a59d5636ed3d6a819137495b08a0'] = 'Mot de passe :'; +$_LANGADM['AdminEmployeesdc5e055e0c66ae48929d03a327972a58'] = 'Laisser blanc si vous ne souhaitez pas changer votre mot de passe'; +$_LANGADM['AdminEmployees2467bfdbc86d3cc7aab2130f56ce6978'] = 'Minimum 8 caractères, uniquement lettres, nombres ou tirets'; +$_LANGADM['AdminEmployees78e365acb087fd1f8d494dae0001de10'] = 'Adresse e-mail :'; +$_LANGADM['AdminEmployeesccec78d886c47adb7e5a79567d262c0d'] = 'Couleur du back office'; +$_LANGADM['AdminEmployeesc0008270d1fea195879befd65d85298f'] = 'L\'arrière plan du back office sera affiché de cette couleur. Couleurs HTML uniquement (ex :'; +$_LANGADM['AdminEmployees0885f0c211f74834f0109c5abaf4cdc4'] = 'Langue :'; +$_LANGADM['AdminEmployeesa9e4402481bd9b8e36752bf731f67eb6'] = 'Thème :'; +$_LANGADM['AdminEmployeesa26f79d46b0719d8baa3a5a7c9abda74'] = 'Le comportement quand la plage est dépassée (par ex. quand un client à un panier plus lourd que la limite de poids la plus haute)'; +$_LANGADM['AdminEmployees79f79257476673a2aea1b2a41adf3384'] = 'Montrer screencast:'; +$_LANGADM['AdminEmployees00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; +$_LANGADM['AdminEmployeesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; +$_LANGADM['AdminEmployees4d1f8c97363b784de6d8924bc655cab6'] = 'Voir la vidéo de bienvenue sur le tableau de bord du back office'; +$_LANGADM['AdminEmployees24a23d787190f2c4812ff9ab11847a72'] = 'Statut :'; +$_LANGADM['AdminEmployees41bc9496fbde8565bd5fc699e513fbd9'] = 'Autoriser cet employé à se connecter au Back Office'; +$_LANGADM['AdminEmployees9fbf3617c6172a75648e9ac0a864bb56'] = 'Profil :'; +$_LANGADM['AdminEmployees7bc873cba11f035df692c3549366c722'] = '-- Choisissez --'; +$_LANGADM['AdminEmployeesf16b5952df8d25ea30b25ff95ee8fedf'] = 'Boutique associée :'; +$_LANGADM['AdminEmployees38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminCartsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminCarts6fde42aa0857eb92fc0d0c3fb1c6c8b7'] = 'ID Commande'; $_LANGADM['AdminCartsce26601dac0dea138b7295f02b7620a7'] = 'Client'; @@ -1288,8 +1285,6 @@ $_LANGADM['AdminCategories52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position'; $_LANGADM['AdminCategories86754577897acfb25deb69039d49d9a7'] = 'Affichée'; $_LANGADM['AdminCategoriesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminCategoriese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminCategoriesfa03eb688ad8aa1db593d33dabd89bad'] = 'Racine'; -$_LANGADM['AdminCategories5f573e91e5eaa092e00a4c4df393c0cb'] = 'Ajouter une catégorie à la racine'; $_LANGADM['AdminCategoriesef61fb324d729c341ea8ab9901e23566'] = 'Ajouter'; $_LANGADM['AdminCategories7dce122004969d56ae2e0245cb754d35'] = 'Modifier'; $_LANGADM['AdminCategoriesea4788705e6873b424c65e91c2846b19'] = 'Annuler'; @@ -1306,9 +1301,6 @@ $_LANGADM['AdminCategories66f2dd0c775eff24ac95c38347bcaf9a'] = 'Catégorie paren $_LANGADM['AdminCategoriesef7de3f485174ff47f061ad27d83d0ee'] = 'sélectionné'; $_LANGADM['AdminCategoriesb56c3bda503a8dc4be356edb0cc31793'] = 'Tout réduire'; $_LANGADM['AdminCategories5ffd7a335dd836b3373f5ec570a58bdc'] = 'Tout développer'; -$_LANGADM['AdminCategories12f30544aaab0eafb21020a3c94bfddf'] = 'Catégorie racine'; -$_LANGADM['AdminCategories93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; -$_LANGADM['AdminCategoriesbafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; $_LANGADM['AdminCategoriesd0042a700e9bdf79689d63ee6846dc0e'] = 'Description :'; $_LANGADM['AdminCategories461900b74731e07320ca79366df3e809'] = 'Image :'; $_LANGADM['AdminCategoriesf0eaa209893a6bb5512c9876037b82be'] = 'Charger le logo de la catégorie à partir de votre ordinateur'; @@ -1323,49 +1315,6 @@ $_LANGADM['AdminCategoriesa8cff2e828f241eed159bc28e76707c7'] = 'Cochez tous les $_LANGADM['AdminCategories38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminCategories3862efce9647cdbdb704436703a7863a'] = 'Cette catégorie ne peut pas être déplacé ici.'; $_LANGADM['AdminCategoriesc83b244e5cf83b968e88e4c37864d726'] = 'Une catégorie ne peut être parente d\'elle même.'; -$_LANGADM['AdminCurrenciesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminCurrencies386c339d37e737a436499d423a77df0c'] = 'Devise'; -$_LANGADM['AdminCurrenciesad68f9bafd9bf2dcf3865dac55662fd5'] = 'Code ISO'; -$_LANGADM['AdminCurrenciesde9b254aa38ded29b5a826d9e752b90b'] = 'ISO code num'; -$_LANGADM['AdminCurrencies02c86eb2792f3262c21d030a87e19793'] = 'Symbole'; -$_LANGADM['AdminCurrenciesd311128c6b9f34f85e6b0e29bcbcd165'] = 'Taux de change'; -$_LANGADM['AdminCurrencies00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; -$_LANGADM['AdminCurrenciesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminCurrenciese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminCurrenciesb67536699de7bf5ddd53bd913e87758a'] = 'Préférences devises'; -$_LANGADM['AdminCurrencies8e10808175a8d945d13bab31fb2e2663'] = 'Devise par défaut:'; -$_LANGADM['AdminCurrencies36144ac2644548932977cc36677c1698'] = 'Devise par défaut utilisée dans la boutique'; -$_LANGADM['AdminCurrenciescc2f0a18cb0448ca2101f93be765e487'] = 'Si vous changez la monnaie par défaut, vous devrez éditer manuellement le prix de chaque produit.'; -$_LANGADM['AdminCurrencies77428b04a1847555eb9bc52422a377b0'] = 'Taux de change'; -$_LANGADM['AdminCurrencies48781284e7a2c2b1479559ce12aa73c5'] = 'Mettre à jour les taux de change en temps réel'; -$_LANGADM['AdminCurrencies876ca43ba50351d4e492970f40632661'] = 'Mettre à jour les taux de change'; -$_LANGADM['AdminCurrencies5e7ad8ee59bd36302bbc58bc710eeabb'] = 'Mise à jour des taux de change'; -$_LANGADM['AdminCurrencies260f0e6ff1df0aa4f39310176b5d6c44'] = 'Placez cette URL dans le fichier crontab ou appelez-le tous les jours manuellement'; -$_LANGADM['AdminCurrencies4174d46e2393f418c835fed0c6b87bdd'] = 'Devises :'; -$_LANGADM['AdminCurrencies77295c7d814e7397c55f64ec06313984'] = 'Devise :'; -$_LANGADM['AdminCurrenciesa5ffda8871e3d3d193c8e67f76686375'] = 'Uniquement les lettres et le tiret sont autorisés'; -$_LANGADM['AdminCurrencies2e5845557ed8ecd864f0db5ce4dac829'] = 'Apparaitra sur le Front Office, exemple : euro, dollar'; -$_LANGADM['AdminCurrencies3af4c1797da60fd50670ddbb669fc0aa'] = 'Code ISO :'; -$_LANGADM['AdminCurrencies8632ac58071857c4425a9b6042f1fe21'] = 'Code ISO, ex : USD pour dollar, EUR pour euro'; -$_LANGADM['AdminCurrencies7fa4d1ea7f7b9d819c54d83bb3263512'] = 'ISO code numérique :'; -$_LANGADM['AdminCurrencies44d23fb07dc0be241d77d922bbc871c1'] = 'ISO code numérique, ex : 840 pour dollar, 978 pour euro'; -$_LANGADM['AdminCurrencies29e59767fa0a8d3adbacc87cae6d061c'] = 'Symbole :'; -$_LANGADM['AdminCurrencies32dd182c91d1a647c40ce4561eb33da9'] = 'Apparaitra sur le Front Office, exemple : €, $'; -$_LANGADM['AdminCurrenciesbebbab2c1ac732ccef4181f51ed52967'] = 'Taux de conversion :'; -$_LANGADM['AdminCurrencies007f2226bf0915adaf9ef63b0e8287ca'] = 'Format :'; -$_LANGADM['AdminCurrencies444a643f521c7fff9ef731ff301d86cc'] = 'Apparaîtra avec tous les prix, ex :'; -$_LANGADM['AdminCurrencies19e5c58e6f3027749ab6aa14c5a650fd'] = 'en dollars'; -$_LANGADM['AdminCurrenciesaa3606501de88ea50155297736664490'] = 'en euros'; -$_LANGADM['AdminCurrenciese02162e8fe1c036639e5c8850ce44b3f'] = 'Décimales :'; -$_LANGADM['AdminCurrencies82158fd670cc8b5dedefd4201d9701cd'] = 'Affiche les décimales dans les prix'; -$_LANGADM['AdminCurrenciesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; -$_LANGADM['AdminCurrencies87bd3cbac63d9410fff1815181cb60cc'] = 'Espace :'; -$_LANGADM['AdminCurrenciesd6b378c31ecfd51965a5a318e06af249'] = 'Inclus un espace entre le signe et le prix, ex :'; -$_LANGADM['AdminCurrencies0099c0173a3c7758b36025bdae9b4fc7'] = 'Activé :'; -$_LANGADM['AdminCurrenciesf16b5952df8d25ea30b25ff95ee8fedf'] = 'Boutique associée'; -$_LANGADM['AdminCurrencies38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminCurrencies795b18173b4ddc7ea79c606ccd0f3feb'] = 'Vous ne pouvez pas supprimer la devise par défaut'; -$_LANGADM['AdminCurrenciese7e915ec26ac2be5f5730752e5fc3b78'] = 'Vous ne pouvez pas désactiver la devise par défaut'; $_LANGADM['AdminHomeecd188c0a9e0913f062d22331411158a'] = 'URLs simplifiées'; $_LANGADM['AdminHome4d92a8b44ec205ea708bd3f3a8926b2d'] = 'Cache & compression navigateur'; $_LANGADM['AdminHome5ad483f10dec94a21c78d89edc1fef94'] = 'Optimisation smarty'; @@ -1410,6 +1359,49 @@ $_LANGADM['AdminHome2938c7f7e560ed972f8a4f68e80ff834'] = 'Tableau de bord'; $_LANGADM['AdminHome57747250ec23a658f7a227ac9241aeef'] = 'Ne plus me remontrer'; $_LANGADM['AdminHome8524de963f07201e5c086830d370797f'] = 'Chargement en cours ...'; $_LANGADM['AdminHomeafd87eb38820c73315688a7cab2571d4'] = 'Pour bien commencer...'; +$_LANGADM['AdminCurrenciesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminCurrencies386c339d37e737a436499d423a77df0c'] = 'Devise'; +$_LANGADM['AdminCurrenciesad68f9bafd9bf2dcf3865dac55662fd5'] = 'Code ISO'; +$_LANGADM['AdminCurrenciesde9b254aa38ded29b5a826d9e752b90b'] = 'ISO code num'; +$_LANGADM['AdminCurrencies02c86eb2792f3262c21d030a87e19793'] = 'Symbole'; +$_LANGADM['AdminCurrenciesd311128c6b9f34f85e6b0e29bcbcd165'] = 'Taux de change'; +$_LANGADM['AdminCurrencies00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; +$_LANGADM['AdminCurrenciesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminCurrenciese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_LANGADM['AdminCurrenciesb67536699de7bf5ddd53bd913e87758a'] = 'Préférences devises'; +$_LANGADM['AdminCurrencies8e10808175a8d945d13bab31fb2e2663'] = 'Devise par défaut:'; +$_LANGADM['AdminCurrencies36144ac2644548932977cc36677c1698'] = 'Devise par défaut utilisée dans la boutique'; +$_LANGADM['AdminCurrenciescc2f0a18cb0448ca2101f93be765e487'] = 'Si vous changez la monnaie par défaut, vous devrez éditer manuellement le prix de chaque produit.'; +$_LANGADM['AdminCurrencies77428b04a1847555eb9bc52422a377b0'] = 'Taux de change'; +$_LANGADM['AdminCurrencies48781284e7a2c2b1479559ce12aa73c5'] = 'Mettre à jour les taux de change en temps réel'; +$_LANGADM['AdminCurrencies876ca43ba50351d4e492970f40632661'] = 'Mettre à jour les taux de change'; +$_LANGADM['AdminCurrencies5e7ad8ee59bd36302bbc58bc710eeabb'] = 'Mise à jour des taux de change'; +$_LANGADM['AdminCurrencies260f0e6ff1df0aa4f39310176b5d6c44'] = 'Placez cette URL dans le fichier crontab ou appelez-le tous les jours manuellement'; +$_LANGADM['AdminCurrencies4174d46e2393f418c835fed0c6b87bdd'] = 'Devises :'; +$_LANGADM['AdminCurrencies77295c7d814e7397c55f64ec06313984'] = 'Devise :'; +$_LANGADM['AdminCurrenciesa5ffda8871e3d3d193c8e67f76686375'] = 'Uniquement les lettres et le tiret sont autorisés'; +$_LANGADM['AdminCurrencies2e5845557ed8ecd864f0db5ce4dac829'] = 'Apparaitra sur le Front Office, exemple : euro, dollar'; +$_LANGADM['AdminCurrencies3af4c1797da60fd50670ddbb669fc0aa'] = 'Code ISO :'; +$_LANGADM['AdminCurrencies8632ac58071857c4425a9b6042f1fe21'] = 'Code ISO, ex : USD pour dollar, EUR pour euro'; +$_LANGADM['AdminCurrencies7fa4d1ea7f7b9d819c54d83bb3263512'] = 'ISO code numérique :'; +$_LANGADM['AdminCurrencies44d23fb07dc0be241d77d922bbc871c1'] = 'ISO code numérique, ex : 840 pour dollar, 978 pour euro'; +$_LANGADM['AdminCurrencies29e59767fa0a8d3adbacc87cae6d061c'] = 'Symbole :'; +$_LANGADM['AdminCurrencies32dd182c91d1a647c40ce4561eb33da9'] = 'Apparaitra sur le Front Office, exemple : €, $'; +$_LANGADM['AdminCurrenciesbebbab2c1ac732ccef4181f51ed52967'] = 'Taux de conversion :'; +$_LANGADM['AdminCurrencies007f2226bf0915adaf9ef63b0e8287ca'] = 'Format :'; +$_LANGADM['AdminCurrencies444a643f521c7fff9ef731ff301d86cc'] = 'Apparaîtra avec tous les prix, ex :'; +$_LANGADM['AdminCurrencies19e5c58e6f3027749ab6aa14c5a650fd'] = 'en dollars'; +$_LANGADM['AdminCurrenciesaa3606501de88ea50155297736664490'] = 'en euros'; +$_LANGADM['AdminCurrenciese02162e8fe1c036639e5c8850ce44b3f'] = 'Décimales :'; +$_LANGADM['AdminCurrencies82158fd670cc8b5dedefd4201d9701cd'] = 'Affiche les décimales dans les prix'; +$_LANGADM['AdminCurrenciesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; +$_LANGADM['AdminCurrencies87bd3cbac63d9410fff1815181cb60cc'] = 'Espace :'; +$_LANGADM['AdminCurrenciesd6b378c31ecfd51965a5a318e06af249'] = 'Inclus un espace entre le signe et le prix, ex :'; +$_LANGADM['AdminCurrencies0099c0173a3c7758b36025bdae9b4fc7'] = 'Activé :'; +$_LANGADM['AdminCurrenciesf16b5952df8d25ea30b25ff95ee8fedf'] = 'Boutique associée'; +$_LANGADM['AdminCurrencies38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminCurrencies795b18173b4ddc7ea79c606ccd0f3feb'] = 'Vous ne pouvez pas supprimer la devise par défaut'; +$_LANGADM['AdminCurrenciese7e915ec26ac2be5f5730752e5fc3b78'] = 'Vous ne pouvez pas désactiver la devise par défaut'; $_LANGADM['AdminScenesb718adec73e04ce3ec720dd11a06a308'] = 'Id'; $_LANGADM['AdminScenes46cff679f56896d63111deff52857fc9'] = 'Scènes'; $_LANGADM['AdminScenescb456215c3333db0551bd0788bc258c7'] = 'Activé'; @@ -1442,7 +1434,6 @@ $_LANGADM['AdminScenes0b24516ee8c68a18020951583bc3b8ab'] = 'Automatiquement redi $_LANGADM['AdminScenes8a5c9824486e8c1f74cb4c4ec8f9e465'] = '(hauteur x largeur)'; $_LANGADM['AdminScenesa5394858079fa378684b20a1abc0e9be'] = 'Note : Pour changer la dimension de base des images de scènes, veuillez modifier le paramètre \'thumb_scene\' avec les dimensions souhaitées (dans le Back office : Onglet \'Préférences\' > Onglet \'Image\').'; $_LANGADM['AdminScenesb667daefa504a39a424c395df58d04b1'] = 'Miniature particulière :'; -$_LANGADM['AdminScenesfa03eb688ad8aa1db593d33dabd89bad'] = 'Racine'; $_LANGADM['AdminScenesef7de3f485174ff47f061ad27d83d0ee'] = 'sélectionnée(s)'; $_LANGADM['AdminScenesb7d7436a18bf546dd6438d92218868c1'] = 'Tout sélectionner'; $_LANGADM['AdminScenes5e9df908eafa83cb51c0a3720e8348c7'] = 'Tout sélectionner'; @@ -1454,6 +1445,46 @@ $_LANGADM['AdminScenes8c38776925f7cf41c090646a43157024'] = 'Catégories:'; $_LANGADM['AdminScenesf5dae0e1b3d4bc66fadd2840b4f79227'] = 'Veuillez ajouter une image pour continuer'; $_LANGADM['AdminScenesf16b5952df8d25ea30b25ff95ee8fedf'] = 'Boutique associée :'; $_LANGADM['AdminScenes997fd7aaabd538817e06ff1b3289bee3'] = 'Image à \"tagger\" :'; +$_LANGADM['AdminSuppliersd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminSupplierse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionés ?'; +$_LANGADM['AdminSuppliersb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminSuppliers8c2857a9ad1d8f31659e35e904e20fa6'] = 'Logo'; +$_LANGADM['AdminSuppliers49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminSuppliers990fc90e39367377c314f1d61522ae61'] = 'Nombre de produits'; +$_LANGADM['AdminSuppliers00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; +$_LANGADM['AdminSuppliers1814d65a76028fdfbadab64a5a8076df'] = 'Fournisseurs'; +$_LANGADM['AdminSuppliers4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminSuppliers6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères interdits :'; +$_LANGADM['AdminSuppliersd0042a700e9bdf79689d63ee6846dc0e'] = 'Description :'; +$_LANGADM['AdminSuppliers76d17e0cd552ad8ca18c5fc1ae9d8098'] = 'Apparaîtra dans la liste des fournisseurs :'; +$_LANGADM['AdminSuppliers673ae02fffb72f0fe68a66f096a01347'] = 'Téléphone :'; +$_LANGADM['AdminSuppliers15e55c7c40b1ebc5e7aa3bc65fd55457'] = 'Numéro de téléphone de ce fournisseur :'; +$_LANGADM['AdminSuppliers2bf1d5fae1c321d594fdedf05058f709'] = 'Adresse :'; +$_LANGADM['AdminSuppliers7515d32836da5648eb6a8f9113b7405b'] = 'Code Postal / Zip Code :'; +$_LANGADM['AdminSuppliersbffb711ec36f280459d11dce315da72f'] = 'Ville :'; +$_LANGADM['AdminSuppliersf64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; +$_LANGADM['AdminSuppliersd122d10313ee7cc2850e091c86f699ae'] = 'Pays où l\'État, région ou ville est située'; +$_LANGADM['AdminSuppliers46a2a41cc6e552044816a2d04634545d'] = 'Etat'; +$_LANGADM['AdminSuppliersacd7b45c9d50280a52990015b2c24ba8'] = 'Logo :'; +$_LANGADM['AdminSuppliers42ce2270f85f28aee54d41a4f5e94698'] = 'Charger le logo du fournisseur à partir de votre ordinateur'; +$_LANGADM['AdminSuppliers7b250cb374c12c42a75227ba75df7779'] = 'Meta Titre:'; +$_LANGADM['AdminSuppliers3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits:'; +$_LANGADM['AdminSuppliersa6bb76858f8b4b61c050ad7a7ac57e06'] = 'Meta Description:'; +$_LANGADM['AdminSuppliers394deec8b4e901394f69ad41095b1ecc'] = 'Meta Mots clés:'; +$_LANGADM['AdminSuppliers0099c0173a3c7758b36025bdae9b4fc7'] = 'Activé :'; +$_LANGADM['AdminSuppliersb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactiver'; +$_LANGADM['AdminSuppliers38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminSuppliersf16b5952df8d25ea30b25ff95ee8fedf'] = 'Association boutique :'; +$_LANGADM['AdminSuppliers8e8efa8fbd3512c87c87c23fe8023604'] = 'Il n\'est pas possible de supprimer un fournisseur si il est / sont en attente de commande de fournitures (s).'; +$_LANGADM['AdminSuppliers543ae6adeb524f98cc7d3c816a1ec1e3'] = 'Total produits :'; +$_LANGADM['AdminSuppliersccf096490d2671f3ea97ea9289eee5b1'] = 'Ean 13 :'; +$_LANGADM['AdminSuppliersaf7448c885be0d8acd5eb84322176570'] = 'UPC :'; +$_LANGADM['AdminSuppliers2d84cbbf65674e7961d4a821338c7f86'] = 'Quantité disponible'; +$_LANGADM['AdminSuppliers1caa6ff629641a4eb20f190f7a0539ca'] = 'Attributs'; +$_LANGADM['AdminSuppliers63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; +$_LANGADM['AdminSuppliers52eb5928a34db3e3da7ba52b0644273b'] = 'EAN13'; +$_LANGADM['AdminSuppliersfbd99ad01b92dbafc686772a39e3d065'] = 'UPC'; +$_LANGADM['AdminSuppliersc8c5918f1175c1296d19755b2f49d1c9'] = 'Quantité disponible'; $_LANGADM['AdminStockConfigurationb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminStockConfiguration31c6b3fdfaaa80dba2dbf92a4600524c'] = 'Signe'; $_LANGADM['AdminStockConfiguration6f15bdfa71aa83b0d197cad75757d580'] = 'Incrémenter'; @@ -1498,144 +1529,6 @@ $_LANGADM['AdminStockConfiguration9dbaf623845ed4efa13daa4aff8b9132'] = 'Est un $_LANGADM['AdminStockConfiguration98176e8fe93c67303a94d7a40f0bcb38'] = 'Est un état de livraison ?'; $_LANGADM['AdminStockConfigurationb8fabc9f332b81eae30d1f69968e87ae'] = 'Est un état de terminaison ?'; $_LANGADM['AdminStockConfiguration673032420d7e0ee43d76c93cc4b157d5'] = 'Le nom de ce produit n\'est pas disponible. Peut-être qu\'il a été supprimé du système.'; -$_LANGADM['AdminSuppliersd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminSupplierse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionés ?'; -$_LANGADM['AdminSuppliersb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminSuppliers8c2857a9ad1d8f31659e35e904e20fa6'] = 'Logo'; -$_LANGADM['AdminSuppliers49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminSuppliers990fc90e39367377c314f1d61522ae61'] = 'Nombre de produits'; -$_LANGADM['AdminSuppliers00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; -$_LANGADM['AdminSuppliers1814d65a76028fdfbadab64a5a8076df'] = 'Fournisseurs'; -$_LANGADM['AdminSuppliers4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminSuppliers6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères interdits :'; -$_LANGADM['AdminSuppliersd0042a700e9bdf79689d63ee6846dc0e'] = 'Description :'; -$_LANGADM['AdminSuppliers76d17e0cd552ad8ca18c5fc1ae9d8098'] = 'Apparaîtra dans la liste des fournisseurs :'; -$_LANGADM['AdminSuppliers673ae02fffb72f0fe68a66f096a01347'] = 'Téléphone :'; -$_LANGADM['AdminSuppliers15e55c7c40b1ebc5e7aa3bc65fd55457'] = 'Numéro de téléphone de ce fournisseur :'; -$_LANGADM['AdminSuppliers2bf1d5fae1c321d594fdedf05058f709'] = 'Adresse :'; -$_LANGADM['AdminSuppliers7515d32836da5648eb6a8f9113b7405b'] = 'Code Postal / Zip Code :'; -$_LANGADM['AdminSuppliersbffb711ec36f280459d11dce315da72f'] = 'Ville :'; -$_LANGADM['AdminSuppliersf64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; -$_LANGADM['AdminSuppliersd122d10313ee7cc2850e091c86f699ae'] = 'Pays où l\'État, région ou ville est située'; -$_LANGADM['AdminSuppliers46a2a41cc6e552044816a2d04634545d'] = 'Etat'; -$_LANGADM['AdminSuppliersacd7b45c9d50280a52990015b2c24ba8'] = 'Logo :'; -$_LANGADM['AdminSuppliers42ce2270f85f28aee54d41a4f5e94698'] = 'Charger le logo du fournisseur à partir de votre ordinateur'; -$_LANGADM['AdminSuppliers7b250cb374c12c42a75227ba75df7779'] = 'Meta Titre:'; -$_LANGADM['AdminSuppliers3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits:'; -$_LANGADM['AdminSuppliersa6bb76858f8b4b61c050ad7a7ac57e06'] = 'Meta Description:'; -$_LANGADM['AdminSuppliers394deec8b4e901394f69ad41095b1ecc'] = 'Meta Mots clés:'; -$_LANGADM['AdminSuppliers0099c0173a3c7758b36025bdae9b4fc7'] = 'Activé :'; -$_LANGADM['AdminSuppliersb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactiver'; -$_LANGADM['AdminSuppliers38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminSuppliersf16b5952df8d25ea30b25ff95ee8fedf'] = 'Association boutique :'; -$_LANGADM['AdminSuppliers8e8efa8fbd3512c87c87c23fe8023604'] = 'Il n\'est pas possible de supprimer un fournisseur si il est / sont en attente de commande de fournitures (s).'; -$_LANGADM['AdminSuppliers543ae6adeb524f98cc7d3c816a1ec1e3'] = 'Total produits :'; -$_LANGADM['AdminSuppliersccf096490d2671f3ea97ea9289eee5b1'] = 'Ean 13 :'; -$_LANGADM['AdminSuppliersaf7448c885be0d8acd5eb84322176570'] = 'UPC :'; -$_LANGADM['AdminSuppliers2d84cbbf65674e7961d4a821338c7f86'] = 'Quantité disponible'; -$_LANGADM['AdminSuppliers1caa6ff629641a4eb20f190f7a0539ca'] = 'Attributs'; -$_LANGADM['AdminSuppliers63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; -$_LANGADM['AdminSuppliers52eb5928a34db3e3da7ba52b0644273b'] = 'EAN13'; -$_LANGADM['AdminSuppliersfbd99ad01b92dbafc686772a39e3d065'] = 'UPC'; -$_LANGADM['AdminSuppliersc8c5918f1175c1296d19755b2f49d1c9'] = 'Quantité disponible'; -$_LANGADM['AdminBackup44749712dbec183e983dcd78a7736c41'] = 'Date'; -$_LANGADM['AdminBackup9d8d2d5ab12b515182a505f54db7f538'] = 'Créé il y a'; -$_LANGADM['AdminBackup34082694d21dbdcfc31e6e32d9fb2b9f'] = 'Nom du fichier'; -$_LANGADM['AdminBackup1908624a0bca678cd26b99bfd405324e'] = 'Taille du fichier'; -$_LANGADM['AdminBackupd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminBackupe25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; -$_LANGADM['AdminBackup30c210e0173f2ff607cc84dc01ffc1f0'] = 'Options de sauvegarde'; -$_LANGADM['AdminBackup810b58656ec020a2bda0b7f74e5e7d0c'] = 'Ignorer les tables de statistiques :'; -$_LANGADM['AdminBackup482e4b3e67dabd684819acb8b64887ef'] = 'Les tables suivantes ne seront PAS sauvegardées si vous activez cette option :'; -$_LANGADM['AdminBackupa5498b899882eb314ba0ab4519889cc2'] = 'Supprimer les tables existantes durant l\'import'; -$_LANGADM['AdminBackup84695439734fb7b69c173b3e39880e18'] = 'Choisissez cette option pour que le fichier de sauvegarde contienne des instructions demandant la suppression des tables existantes durant la restauration d\'une sauvegarde'; -$_LANGADM['AdminBackupea4788705e6873b424c65e91c2846b19'] = 'Annuler'; -$_LANGADM['AdminBackup540f529ae6719f17617936818a8afaac'] = 'Le dossier \'backups\' dans le dossier \'admin\' doit être accessible en écriture (CHMOD 755 / 777)'; -$_LANGADM['AdminBackup2dfcd22fa4b395849dba9e20998d24c7'] = 'La sauvegarde semble s\'être déroulée correctement, cependant, vous devez vérifier sa validité et sa qualité.'; -$_LANGADM['AdminBackup896c55cc5e46fab38ce9f51ebf7bfcd3'] = 'heure'; -$_LANGADM['AdminBackup73cdddd7730abfc13a55efb9f5685a3b'] = 'heures'; -$_LANGADM['AdminBackup628b7db04235f228d40adc671413a8c8'] = 'jour'; -$_LANGADM['AdminBackup44fdec47036f482b68b748f9d786801b'] = 'jours'; -$_LANGADM['AdminBackup801ab24683a4a8c433c6eb40c48bcd9d'] = 'Télécharger'; -$_LANGADM['AdminBackup2000271bb894b988d2097aaf528b6680'] = 'Télécharger le fichier de sauvegarde'; -$_LANGADM['AdminBackup6dd757cbdd852a16f222a7d1a07eab3e'] = 'Mo'; -$_LANGADM['AdminBackupc9d8519a44774664f720c0ce6275ac2a'] = 'Astuce : Vous pouvez également télécharger ce fichier par FTP, les fichiers de sauvegardes sont situés dans le répertoire \"admin/backups\".'; -$_LANGADM['AdminBackup5a0a50bcda916d40913bbf98675b0633'] = 'Avertissement avant de créer une sauvegarde'; -$_LANGADM['AdminBackup422540a2c50fe85b1f799ff2b2fd5d8d'] = 'PrestaShop n\'est ni responsable de votre base de données, ni de vos sauvegardes, ni de vos restaurations, ni de vos données.'; -$_LANGADM['AdminBackupee0ea4b3f98494324b3d39df83437f0d'] = 'PrestaShop est un logiciel Open-source, vous l\'utilisez à vos risques et périls après avoir pris connaissance de sa licence.'; -$_LANGADM['AdminBackup714aed045ed859b4e77cddddeeccaed5'] = 'Vous devez sauvegarder vos données régulièrement (à la fois vos fichiers et votre base de données).'; -$_LANGADM['AdminBackup4d247cbe2dbd06ce20b9affd635e7982'] = 'Cette fonction ne permet de sauvegarder que votre base de données, pas vos fichiers.'; -$_LANGADM['AdminBackupb59917a7c4898ff9a48a78b7a063005d'] = 'Par défaut, vos tables de base de données existantes seront supprimées si vous restaurez une sauvegarde (voir Options).'; -$_LANGADM['AdminBackupf15dca6392936098982c8e3457ce87db'] = 'Vérifiez systématiquement la qualité et l\'intégrité de vos fichiers de sauvegarde.'; -$_LANGADM['AdminBackupc17110fda3272c08371ace783c673e56'] = 'Vérifiez systématiquement que vos fichiers de sauvegardes sont complets, récents et valides, même si vous avez obtenu des messages de confirmation durant la procédure de sauvegarde.'; -$_LANGADM['AdminBackup0dc51a7afc30b342b827df535ff616f2'] = 'Vérifiez systématiquement vos données.'; -$_LANGADM['AdminBackup5c5e4f2eda086c93473b2c8e7e9b896c'] = 'Ne restaurez jamais une sauvegarde sur un site en production.'; -$_LANGADM['AdminBackup46f0e215b9abb597017994db268fc3a0'] = 'Comment restaurer une sauvegarde en 10 étapes simples'; -$_LANGADM['AdminBackup10479732a2bea7a5a10bb7b47c639789'] = 'Mettez sur \"Non\" l\'option \"Activer la boutique\" dans l\'onglet \"Préférences\".'; -$_LANGADM['AdminBackupa57e3f4dcacc92f3756b16fde61f6f01'] = 'Téléchargez le fichier de sauvegarde depuis la liste ci-dessous ou sur votre serveur FTP (dans le dossier \"admin/backups\").'; -$_LANGADM['AdminBackupf3bc009a9ac0e586b7966a1c1352b094'] = 'Vérifiez l\'intégrité de votre sauvegarde : présence d\'erreurs, fichier incomplet... vérifiez toutes vos données.'; -$_LANGADM['AdminBackupa20972942ef0de075f5d9c225c80ae4d'] = 'Demandez à votre hébergeur un accès à l\'outil \"phpMyAdmin\"'; -$_LANGADM['AdminBackupad408cc67b79776c0b6c9867326c3493'] = 'Connectez-vous à \"phpMyAdmin\" et sélectionnez votre base de données actuelle'; -$_LANGADM['AdminBackup197ebd1d022def92dd1c64aae3320d6a'] = 'Si vous n\'avez pas activé l\'option \"Supprimer les tables existantes durant l\'import\", vous devez supprimer toutes les tables présentes dans votre base de données actuelle.'; -$_LANGADM['AdminBackup42edcff7b40f111d974f2802ea9f5abf'] = 'En haut de l\'écran, cliquez sur l\'onglet \"Importer\"'; -$_LANGADM['AdminBackup6bfc8c9cb81f79f6db4707f115df9788'] = 'Cliquez sur le bouton \"Parcourir...\" et sélectionnez le fichier de sauvegarde depuis votre disque dur'; -$_LANGADM['AdminBackup7ea4b668bc415112476c6abea16b5c00'] = 'Vérifiez la taille maximale autorisée (ex. Max: 16Mo)'; -$_LANGADM['AdminBackupaea390041b1129a817610ff53181cd4b'] = 'Si le poids de votre fichier de sauvegarde est trop important, contactez votre hébergeur'; -$_LANGADM['AdminBackupb3bd0f5ff93aa82c778f1486bdfecb90'] = 'Cliquez sur le bouton \"Exécuter\" et patientez durant l\'import de votre fichier, cela peut prendre plusieurs minutes'; -$_LANGADM['AdminBackupc9c8018315982c1aa308a9146e0bed76'] = 'J\'ai lu l\'avertissement - Créer une sauvegarde'; -$_LANGADM['AdminBackupc4a8330b099d9409ed1ba801d69a1dd0'] = 'Lancement du téléchargement...'; -$_LANGADM['AdminBackupbe0d109f79bd4ce87d2bf3dd216ba165'] = 'Le téléchargement doit se lancer automatiquement.'; -$_LANGADM['AdminBackupb828e7a94de289536d535e8c141868b9'] = 'Si ce n\'est pas le cas,'; -$_LANGADM['AdminBackupd1c6b1687ebbc336f9bd13beba87b0cf'] = 'merci de cliquer ici !'; -$_LANGADM['index86bbc77fd75ac02c21b84a37b260eadd'] = 'Panneau d\'administration'; -$_LANGADM['indexf34d48fdeb503f83d7b2d6912ad4ad5c'] = 'Une nouvelle commande a été effectuée sur votre boutique.'; -$_LANGADM['indexfa4ca47bd32c835f24a5e9ec29a87a5f'] = 'Numéro de commande : '; -$_LANGADM['indexba3ffaeeeee2d808a2a173707349ebdb'] = 'Total : '; -$_LANGADM['indexaf7f7f1e54081425693d013be2ba5d1f'] = 'De : '; -$_LANGADM['indexe8c47ac18c587ee1a2a3617c7e96245a'] = 'Cliquez ici pour voir cette commande'; -$_LANGADM['indexd2d2000f7fa636acd871f43c085a75dc'] = 'Un nouveau client s\'est inscrit sur votre boutique.'; -$_LANGADM['indexea9b3a6658e8b6ab6b1bc960f68ce63f'] = 'Nom du client : '; -$_LANGADM['indexe30d2e2e3e089445907ea440d5f0d901'] = 'Cliquez ici pour voir ce client'; -$_LANGADM['indexa546b4ed60fa82d6e50475370c228979'] = 'Un nouveau message a été posté sur votre boutique.'; -$_LANGADM['index3c40bce8d041e25000f92477f7f8ab31'] = 'Cliquez ici pour voir ce message'; -$_LANGADM['index2d171b6a17c89ae0c6e4f2b64f2af559'] = 'Une modification de ce champ sera appliquée à toutes les boutiques'; -$_LANGADM['index3e12761a2bcba8a5a257db3ccab5422f'] = 'Une modification de ce champ sera appliquée à toutes les boutiques du groupe %s'; -$_LANGADM['index7de03e29467c9d376a57e40f2ace850f'] = 'Une modification de ce champ sera appliquée à la boutique %s'; -$_LANGADM['index529a53abbdf42a64cb2d149c0aeced04'] = 'Dernières commandes'; -$_LANGADM['index050a0d11da7943317186f76a36b14a6c'] = 'Aucune nouvelle commande sur votre boutique'; -$_LANGADM['indexad0750ccecf0c31c43ce46ea7e665ea5'] = 'Voir toutes les commandes'; -$_LANGADM['index1a9c46c5de112e3cb217e0ec5576d499'] = 'Derniers clients'; -$_LANGADM['indexab2f2e57bccf2066528b0c585993dcda'] = 'Aucun nouveau client sur votre boutique'; -$_LANGADM['index4942b4a77c98af316861fc63c648b45f'] = 'Voir tous les clients'; -$_LANGADM['index77181afe06241c54ef771a23ee6da8f4'] = 'Derniers messages'; -$_LANGADM['indexb73a47387ac1a23b17154c3b1e93fb71'] = 'Aucun nouveau message posté sur votre boutique'; -$_LANGADM['indexa2eda4e1c4dfc9bade7150b878c57a46'] = 'Voir tous les messages'; -$_LANGADM['indexf84b4e2770ec98e3db2926cd49864d2f'] = 'Mes préférences'; -$_LANGADM['index4236a440a662cc8253d7536e5aa17942'] = 'déconnexion'; -$_LANGADM['indexd70861cbe7f8c9a1241c39b3e7ef5ef2'] = 'Voir mon magasin'; -$_LANGADM['indexcbebc850f5f849e8956b5f8075f48f69'] = 'tout'; -$_LANGADM['index46f22f2a56ddd091f4b2b2c35c5ca989'] = 'catalogue'; -$_LANGADM['index4b6f7d34a58ba399f077685951d06738'] = 'clients'; -$_LANGADM['index50d7eaecd64b277cdaac58e0cd48ad83'] = 'adresse ip'; -$_LANGADM['index12c500ed0b7879105fb46af0f246be87'] = 'commandes'; -$_LANGADM['index56deca22a707214865f7ea3ae6391d67'] = 'factures'; -$_LANGADM['index8642a2f37a5d42b54ce53b1fbdd1583f'] = 'paniers'; -$_LANGADM['index13348442cc6a27032d2b4aa28b75a5d3'] = 'Recherche'; -$_LANGADM['index4f32a32dea642737580dd71cdfd8d3c0'] = 'Accès rapide'; -$_LANGADM['index891cea3363eb13a9ed383ae32f0b48d8'] = 'Selectionnez votre boutique :'; -$_LANGADM['index53cd939ae14e33855274e17a3c411fdd'] = 'Pour des raisons de sécurité, vous devez :'; -$_LANGADM['indexe99c06952f4336ce189d8df45980dca0'] = 'supprimer le dossier /install'; -$_LANGADM['index7286baef44d09300636a4b99c533523c'] = 'Temps de chargement :'; -$_LANGADM['indexbbaff12800505b22a853e8b7f4eb6a22'] = 'Contact'; -$_LANGADM['index3e937d04c1c83492260a33d926ca587c'] = 'Bug Tracker'; -$_LANGADM['indexe6a7f8a2f42cc35979973da8dfb10720'] = 'Forum'; -$_LANGADM['index804ccd6219996d12eda865d1c0707423'] = 'Toutes les boutiques'; -$_LANGADM['indexeed2839c1e3e5f7069ed03b2f6d4c6dd'] = 'Panneau d\'administration'; -$_LANGADM['indexe67615d6c998f1a013f1d27bbc555cff'] = 'Vous configurez votre site pour le groupe de magasins %s'; -$_LANGADM['index1165ec47ce359708f4a608d4decd04f6'] = 'Vous configurez votre site pour le magasin %s'; -$_LANGADM['indexdb26e10564e958809d798e8048fcbc0a'] = 'Clé de sécurité invalide'; -$_LANGADM['indexa4da6f31ab268a5310bc475e63ab92db'] = 'Je comprends les risques et je veux afficher la page'; -$_LANGADM['index5196611ad1bf27e9cef5375b038c04db'] = 'Sortez-moi d\'ici !'; $_LANGADM['AdminInformation3f79383ea69a630b2928b4cf279cc9f0'] = 'Outils: Informations'; $_LANGADM['AdminInformationaf3e294442744e49788883caffaeaf19'] = 'Mettez à jour votre version de PHP'; $_LANGADM['AdminInformationc168c59890774aa16b1c1fc49168394b'] = 'Configurer votre serveur afin d\'autoriser l\'envoi de fichier'; @@ -1685,56 +1578,104 @@ $_LANGADM['AdminInformatione91dd9bbca6e42bb85c0f2d94aaee995'] = 'Vérifier votre $_LANGADM['AdminInformation15f4c82d7b2b43e31c30dd018b800c56'] = 'Paramètres requis'; $_LANGADM['AdminInformatione7fda5b7b853496978bc2822541e9d89'] = 'Merci de consulter la/les erreur(s) suivante(s)'; $_LANGADM['AdminInformatione3beee990a3abfcc54a09f5727e1ee11'] = 'Paramètres optionnels'; -$_LANGADM['AdminSpecificPriceRule37be07209f53a5d636d5c904ca9ae64c'] = 'Pourcentage'; -$_LANGADM['AdminSpecificPriceRuleb2f40690858b404ed10e62bdf422c704'] = 'Montant'; -$_LANGADM['AdminSpecificPriceRuled3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la selection'; -$_LANGADM['AdminSpecificPriceRulee25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments ?'; -$_LANGADM['AdminSpecificPriceRuleb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminSpecificPriceRule49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminSpecificPriceRule9f82518d468b9fee614fcc92f76bb163'] = 'Boutique'; -$_LANGADM['AdminSpecificPriceRule386c339d37e737a436499d423a77df0c'] = 'Devise'; -$_LANGADM['AdminSpecificPriceRule59716c97497eb9694541f7c3d37b1a4d'] = 'Pays'; -$_LANGADM['AdminSpecificPriceRule03937134cedab9078be39a77ee3a48a0'] = 'Groupe'; -$_LANGADM['AdminSpecificPriceRulefc7b398d4af2074cfe73febdb5971153'] = 'A partir de la quantité'; -$_LANGADM['AdminSpecificPriceRule7b28d39c479ba659159b3356616b0a04'] = 'Type de réduction'; -$_LANGADM['AdminSpecificPriceRule9e834f13e35e4edf64863ab414a6217a'] = 'Réduction'; -$_LANGADM['AdminSpecificPriceRule5da618e8e4b89c66fe86e32cdafde142'] = 'A partir de'; -$_LANGADM['AdminSpecificPriceRulee12167aa0a7698e6ebc92b4ce3909b53'] = 'Jusqu\'à'; -$_LANGADM['AdminSpecificPriceRule088db50930cbc7793d4825b7add69e5c'] = 'Règles de prix catalogue'; -$_LANGADM['AdminSpecificPriceRule4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminSpecificPriceRule3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits :'; -$_LANGADM['AdminSpecificPriceRuleb91c371eeb88143fd0260f990bcf8d75'] = 'Boutique :'; -$_LANGADM['AdminSpecificPriceRule804ccd6219996d12eda865d1c0707423'] = 'Toutes les boutiques'; -$_LANGADM['AdminSpecificPriceRule77295c7d814e7397c55f64ec06313984'] = 'Devise :'; -$_LANGADM['AdminSpecificPriceRule9c7f56d70e922a61254366964c01c64a'] = 'Toutes les devises'; -$_LANGADM['AdminSpecificPriceRulef64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; -$_LANGADM['AdminSpecificPriceRulec3987e4cac14a8456515f0d200da04ee'] = 'Tous les pays'; -$_LANGADM['AdminSpecificPriceRule1aa4c641d6920ddb97a2562f8ec53853'] = 'Groupe :'; -$_LANGADM['AdminSpecificPriceRulee4c4c68c7515704a91d90207067dcbbe'] = 'Tous les groupes'; -$_LANGADM['AdminSpecificPriceRuleb6cc7880260609e8c6702d9e731d2e1e'] = 'A partir de la quantité :'; -$_LANGADM['AdminSpecificPriceRulef2c12ae14393ffc83551d56f32bb03cc'] = 'Prix :'; -$_LANGADM['AdminSpecificPriceRule1e6d57e813355689e9c77e947d73ad8f'] = 'A partir de :'; -$_LANGADM['AdminSpecificPriceRule33caa076f23f453dd4061726f3706325'] = 'Jusqu\'à :'; -$_LANGADM['AdminSpecificPriceRule308c46626713eaa9265c92d5b5d92308'] = 'Type de réduction :'; -$_LANGADM['AdminSpecificPriceRule80a72b968b1a0ca9e2bf3b50161890ae'] = 'Réduction :'; -$_LANGADM['AdminSpecificPriceRule38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminSpecificPriceRule6982640121765cb57f29e6fe170caadc'] = 'Ajouter un nouveau groupe de conditions'; -$_LANGADM['AdminSpecificPriceRule229eb04083e06f419f9ac494329f957d'] = 'Conditions'; -$_LANGADM['AdminSpecificPriceRule56a8a9eb05f9014da51a4f9b57322ac7'] = 'Catégorie :'; -$_LANGADM['AdminSpecificPriceRule643202d7ee8cb01d888e058b5341455a'] = 'Ajouter la condition'; -$_LANGADM['AdminSpecificPriceRulef4a275a931b82e5058bc8ffad8b8e5bd'] = 'Fabricant :'; -$_LANGADM['AdminSpecificPriceRule90bf278fe4384c50cd3ba3eb9d3c5393'] = 'Fournisseur :'; -$_LANGADM['AdminSpecificPriceRule77174410b72decfd0b259961f1f65a8f'] = 'Déclinaisons :'; -$_LANGADM['AdminSpecificPriceRuled6295c05503596b3ed3528aee83e3ef7'] = 'Caractéristiques :'; -$_LANGADM['AdminSpecificPriceRulee43e4f8aab3dbe1127082747a86a2120'] = 'Groupe de conditions'; -$_LANGADM['AdminSpecificPriceRulea1fa27779242b4902f7ae3bdd5c6d508'] = 'Type'; -$_LANGADM['AdminSpecificPriceRule689202409e48743b914713f96d93947c'] = 'Valeur'; -$_LANGADM['AdminSpecificPriceRule1d00e7dce692e8dc3f6877f035e3a616'] = 'OU'; -$_LANGADM['AdminSpecificPriceRule3adbdb3ac060038aa0e6e6c138ef9873'] = 'Catégorie'; -$_LANGADM['AdminSpecificPriceRulec0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricant'; -$_LANGADM['AdminSpecificPriceRuleec136b444eede3bc85639fac0dd06229'] = 'Fournisseur'; -$_LANGADM['AdminSpecificPriceRulef2bbdf9f72c085adc4d0404e370f0f4c'] = 'Déclinaison'; -$_LANGADM['AdminSpecificPriceRule21021ea0e52be8e9c599f4dff41e5be0'] = 'Caractéristique'; +$_LANGADM['index86bbc77fd75ac02c21b84a37b260eadd'] = 'Panneau d\'administration'; +$_LANGADM['indexf34d48fdeb503f83d7b2d6912ad4ad5c'] = 'Une nouvelle commande a été effectuée sur votre boutique.'; +$_LANGADM['indexfa4ca47bd32c835f24a5e9ec29a87a5f'] = 'Numéro de commande : '; +$_LANGADM['indexba3ffaeeeee2d808a2a173707349ebdb'] = 'Total : '; +$_LANGADM['indexaf7f7f1e54081425693d013be2ba5d1f'] = 'De : '; +$_LANGADM['indexe8c47ac18c587ee1a2a3617c7e96245a'] = 'Cliquez ici pour voir cette commande'; +$_LANGADM['indexd2d2000f7fa636acd871f43c085a75dc'] = 'Un nouveau client s\'est inscrit sur votre boutique.'; +$_LANGADM['indexea9b3a6658e8b6ab6b1bc960f68ce63f'] = 'Nom du client : '; +$_LANGADM['indexe30d2e2e3e089445907ea440d5f0d901'] = 'Cliquez ici pour voir ce client'; +$_LANGADM['indexa546b4ed60fa82d6e50475370c228979'] = 'Un nouveau message a été posté sur votre boutique.'; +$_LANGADM['index3c40bce8d041e25000f92477f7f8ab31'] = 'Cliquez ici pour voir ce message'; +$_LANGADM['index2d171b6a17c89ae0c6e4f2b64f2af559'] = 'Une modification de ce champ sera appliquée à toutes les boutiques'; +$_LANGADM['index3e12761a2bcba8a5a257db3ccab5422f'] = 'Une modification de ce champ sera appliquée à toutes les boutiques du groupe %s'; +$_LANGADM['index7de03e29467c9d376a57e40f2ace850f'] = 'Une modification de ce champ sera appliquée à la boutique %s'; +$_LANGADM['index529a53abbdf42a64cb2d149c0aeced04'] = 'Dernières commandes'; +$_LANGADM['index050a0d11da7943317186f76a36b14a6c'] = 'Aucune nouvelle commande sur votre boutique'; +$_LANGADM['indexad0750ccecf0c31c43ce46ea7e665ea5'] = 'Voir toutes les commandes'; +$_LANGADM['index1a9c46c5de112e3cb217e0ec5576d499'] = 'Derniers clients'; +$_LANGADM['indexab2f2e57bccf2066528b0c585993dcda'] = 'Aucun nouveau client sur votre boutique'; +$_LANGADM['index4942b4a77c98af316861fc63c648b45f'] = 'Voir tous les clients'; +$_LANGADM['index77181afe06241c54ef771a23ee6da8f4'] = 'Derniers messages'; +$_LANGADM['indexb73a47387ac1a23b17154c3b1e93fb71'] = 'Aucun nouveau message posté sur votre boutique'; +$_LANGADM['indexa2eda4e1c4dfc9bade7150b878c57a46'] = 'Voir tous les messages'; +$_LANGADM['indexf84b4e2770ec98e3db2926cd49864d2f'] = 'Mes préférences'; +$_LANGADM['index4236a440a662cc8253d7536e5aa17942'] = 'déconnexion'; +$_LANGADM['indexd70861cbe7f8c9a1241c39b3e7ef5ef2'] = 'Voir mon magasin'; +$_LANGADM['indexcbebc850f5f849e8956b5f8075f48f69'] = 'tout'; +$_LANGADM['index46f22f2a56ddd091f4b2b2c35c5ca989'] = 'catalogue'; +$_LANGADM['index4b6f7d34a58ba399f077685951d06738'] = 'clients'; +$_LANGADM['index50d7eaecd64b277cdaac58e0cd48ad83'] = 'adresse ip'; +$_LANGADM['index12c500ed0b7879105fb46af0f246be87'] = 'commandes'; +$_LANGADM['index56deca22a707214865f7ea3ae6391d67'] = 'factures'; +$_LANGADM['index8642a2f37a5d42b54ce53b1fbdd1583f'] = 'paniers'; +$_LANGADM['index13348442cc6a27032d2b4aa28b75a5d3'] = 'Recherche'; +$_LANGADM['index4f32a32dea642737580dd71cdfd8d3c0'] = 'Accès rapide'; +$_LANGADM['index891cea3363eb13a9ed383ae32f0b48d8'] = 'Selectionnez votre boutique :'; +$_LANGADM['index53cd939ae14e33855274e17a3c411fdd'] = 'Pour des raisons de sécurité, vous devez :'; +$_LANGADM['indexe99c06952f4336ce189d8df45980dca0'] = 'supprimer le dossier /install'; +$_LANGADM['index7286baef44d09300636a4b99c533523c'] = 'Temps de chargement :'; +$_LANGADM['indexbbaff12800505b22a853e8b7f4eb6a22'] = 'Contact'; +$_LANGADM['index3e937d04c1c83492260a33d926ca587c'] = 'Bug Tracker'; +$_LANGADM['indexe6a7f8a2f42cc35979973da8dfb10720'] = 'Forum'; +$_LANGADM['index804ccd6219996d12eda865d1c0707423'] = 'Toutes les boutiques'; +$_LANGADM['indexeed2839c1e3e5f7069ed03b2f6d4c6dd'] = 'Panneau d\'administration'; +$_LANGADM['indexe67615d6c998f1a013f1d27bbc555cff'] = 'Vous configurez votre site pour le groupe de magasins %s'; +$_LANGADM['index1165ec47ce359708f4a608d4decd04f6'] = 'Vous configurez votre site pour le magasin %s'; +$_LANGADM['indexdb26e10564e958809d798e8048fcbc0a'] = 'Clé de sécurité invalide'; +$_LANGADM['indexa4da6f31ab268a5310bc475e63ab92db'] = 'Je comprends les risques et je veux afficher la page'; +$_LANGADM['index5196611ad1bf27e9cef5375b038c04db'] = 'Sortez-moi d\'ici !'; +$_LANGADM['AdminBackup44749712dbec183e983dcd78a7736c41'] = 'Date'; +$_LANGADM['AdminBackup9d8d2d5ab12b515182a505f54db7f538'] = 'Créé il y a'; +$_LANGADM['AdminBackup34082694d21dbdcfc31e6e32d9fb2b9f'] = 'Nom du fichier'; +$_LANGADM['AdminBackup1908624a0bca678cd26b99bfd405324e'] = 'Taille du fichier'; +$_LANGADM['AdminBackupd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminBackupe25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer la sélection ?'; +$_LANGADM['AdminBackup30c210e0173f2ff607cc84dc01ffc1f0'] = 'Options de sauvegarde'; +$_LANGADM['AdminBackup810b58656ec020a2bda0b7f74e5e7d0c'] = 'Ignorer les tables de statistiques :'; +$_LANGADM['AdminBackup482e4b3e67dabd684819acb8b64887ef'] = 'Les tables suivantes ne seront PAS sauvegardées si vous activez cette option :'; +$_LANGADM['AdminBackupa5498b899882eb314ba0ab4519889cc2'] = 'Supprimer les tables existantes durant l\'import'; +$_LANGADM['AdminBackup84695439734fb7b69c173b3e39880e18'] = 'Choisissez cette option pour que le fichier de sauvegarde contienne des instructions demandant la suppression des tables existantes durant la restauration d\'une sauvegarde'; +$_LANGADM['AdminBackupea4788705e6873b424c65e91c2846b19'] = 'Annuler'; +$_LANGADM['AdminBackup540f529ae6719f17617936818a8afaac'] = 'Le dossier \'backups\' dans le dossier \'admin\' doit être accessible en écriture (CHMOD 755 / 777)'; +$_LANGADM['AdminBackup2dfcd22fa4b395849dba9e20998d24c7'] = 'La sauvegarde semble s\'être déroulée correctement, cependant, vous devez vérifier sa validité et sa qualité.'; +$_LANGADM['AdminBackup896c55cc5e46fab38ce9f51ebf7bfcd3'] = 'heure'; +$_LANGADM['AdminBackup73cdddd7730abfc13a55efb9f5685a3b'] = 'heures'; +$_LANGADM['AdminBackup628b7db04235f228d40adc671413a8c8'] = 'jour'; +$_LANGADM['AdminBackup44fdec47036f482b68b748f9d786801b'] = 'jours'; +$_LANGADM['AdminBackup801ab24683a4a8c433c6eb40c48bcd9d'] = 'Télécharger'; +$_LANGADM['AdminBackup2000271bb894b988d2097aaf528b6680'] = 'Télécharger le fichier de sauvegarde'; +$_LANGADM['AdminBackup6dd757cbdd852a16f222a7d1a07eab3e'] = 'Mo'; +$_LANGADM['AdminBackupc9d8519a44774664f720c0ce6275ac2a'] = 'Astuce : Vous pouvez également télécharger ce fichier par FTP, les fichiers de sauvegardes sont situés dans le répertoire \"admin/backups\".'; +$_LANGADM['AdminBackup5a0a50bcda916d40913bbf98675b0633'] = 'Avertissement avant de créer une sauvegarde'; +$_LANGADM['AdminBackup422540a2c50fe85b1f799ff2b2fd5d8d'] = 'PrestaShop n\'est ni responsable de votre base de données, ni de vos sauvegardes, ni de vos restaurations, ni de vos données.'; +$_LANGADM['AdminBackupee0ea4b3f98494324b3d39df83437f0d'] = 'PrestaShop est un logiciel Open-source, vous l\'utilisez à vos risques et périls après avoir pris connaissance de sa licence.'; +$_LANGADM['AdminBackup714aed045ed859b4e77cddddeeccaed5'] = 'Vous devez sauvegarder vos données régulièrement (à la fois vos fichiers et votre base de données).'; +$_LANGADM['AdminBackup4d247cbe2dbd06ce20b9affd635e7982'] = 'Cette fonction ne permet de sauvegarder que votre base de données, pas vos fichiers.'; +$_LANGADM['AdminBackupb59917a7c4898ff9a48a78b7a063005d'] = 'Par défaut, vos tables de base de données existantes seront supprimées si vous restaurez une sauvegarde (voir Options).'; +$_LANGADM['AdminBackupf15dca6392936098982c8e3457ce87db'] = 'Vérifiez systématiquement la qualité et l\'intégrité de vos fichiers de sauvegarde.'; +$_LANGADM['AdminBackupc17110fda3272c08371ace783c673e56'] = 'Vérifiez systématiquement que vos fichiers de sauvegardes sont complets, récents et valides, même si vous avez obtenu des messages de confirmation durant la procédure de sauvegarde.'; +$_LANGADM['AdminBackup0dc51a7afc30b342b827df535ff616f2'] = 'Vérifiez systématiquement vos données.'; +$_LANGADM['AdminBackup5c5e4f2eda086c93473b2c8e7e9b896c'] = 'Ne restaurez jamais une sauvegarde sur un site en production.'; +$_LANGADM['AdminBackup46f0e215b9abb597017994db268fc3a0'] = 'Comment restaurer une sauvegarde en 10 étapes simples'; +$_LANGADM['AdminBackup10479732a2bea7a5a10bb7b47c639789'] = 'Mettez sur \"Non\" l\'option \"Activer la boutique\" dans l\'onglet \"Préférences\".'; +$_LANGADM['AdminBackupa57e3f4dcacc92f3756b16fde61f6f01'] = 'Téléchargez le fichier de sauvegarde depuis la liste ci-dessous ou sur votre serveur FTP (dans le dossier \"admin/backups\").'; +$_LANGADM['AdminBackupf3bc009a9ac0e586b7966a1c1352b094'] = 'Vérifiez l\'intégrité de votre sauvegarde : présence d\'erreurs, fichier incomplet... vérifiez toutes vos données.'; +$_LANGADM['AdminBackupa20972942ef0de075f5d9c225c80ae4d'] = 'Demandez à votre hébergeur un accès à l\'outil \"phpMyAdmin\"'; +$_LANGADM['AdminBackupad408cc67b79776c0b6c9867326c3493'] = 'Connectez-vous à \"phpMyAdmin\" et sélectionnez votre base de données actuelle'; +$_LANGADM['AdminBackup197ebd1d022def92dd1c64aae3320d6a'] = 'Si vous n\'avez pas activé l\'option \"Supprimer les tables existantes durant l\'import\", vous devez supprimer toutes les tables présentes dans votre base de données actuelle.'; +$_LANGADM['AdminBackup42edcff7b40f111d974f2802ea9f5abf'] = 'En haut de l\'écran, cliquez sur l\'onglet \"Importer\"'; +$_LANGADM['AdminBackup6bfc8c9cb81f79f6db4707f115df9788'] = 'Cliquez sur le bouton \"Parcourir...\" et sélectionnez le fichier de sauvegarde depuis votre disque dur'; +$_LANGADM['AdminBackup7ea4b668bc415112476c6abea16b5c00'] = 'Vérifiez la taille maximale autorisée (ex. Max: 16Mo)'; +$_LANGADM['AdminBackupaea390041b1129a817610ff53181cd4b'] = 'Si le poids de votre fichier de sauvegarde est trop important, contactez votre hébergeur'; +$_LANGADM['AdminBackupb3bd0f5ff93aa82c778f1486bdfecb90'] = 'Cliquez sur le bouton \"Exécuter\" et patientez durant l\'import de votre fichier, cela peut prendre plusieurs minutes'; +$_LANGADM['AdminBackupc9c8018315982c1aa308a9146e0bed76'] = 'J\'ai lu l\'avertissement - Créer une sauvegarde'; +$_LANGADM['AdminBackupc4a8330b099d9409ed1ba801d69a1dd0'] = 'Lancement du téléchargement...'; +$_LANGADM['AdminBackupbe0d109f79bd4ce87d2bf3dd216ba165'] = 'Le téléchargement doit se lancer automatiquement.'; +$_LANGADM['AdminBackupb828e7a94de289536d535e8c141868b9'] = 'Si ce n\'est pas le cas,'; +$_LANGADM['AdminBackupd1c6b1687ebbc336f9bd13beba87b0cf'] = 'merci de cliquer ici !'; $_LANGADM['AdminCountriesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminCountriese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; $_LANGADM['AdminCountries1ba05fd4e90285e49e7837171265942a'] = 'Assigner une nouvelle zone'; @@ -1785,6 +1726,56 @@ $_LANGADM['AdminCountriesfc6bff84b96cbd12e8b2acb2cbe4c979'] = 'Ré-affichera vot $_LANGADM['AdminCountries96cddc4940425c2e51164e6f53ca3acf'] = 'Effacera la mise en page en cours'; $_LANGADM['AdminCountries4cc62307750c99e9f150d2baa18b6b81'] = 'Etes-vous certain de vouloir appliquer cette action ?'; $_LANGADM['AdminCountries9639e32cab248434a17ab32237cb3b71'] = 'Appliquer'; +$_LANGADM['AdminSpecificPriceRule37be07209f53a5d636d5c904ca9ae64c'] = 'Pourcentage'; +$_LANGADM['AdminSpecificPriceRuleb2f40690858b404ed10e62bdf422c704'] = 'Montant'; +$_LANGADM['AdminSpecificPriceRuled3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la selection'; +$_LANGADM['AdminSpecificPriceRulee25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments ?'; +$_LANGADM['AdminSpecificPriceRuleb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminSpecificPriceRule49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminSpecificPriceRule9f82518d468b9fee614fcc92f76bb163'] = 'Boutique'; +$_LANGADM['AdminSpecificPriceRule386c339d37e737a436499d423a77df0c'] = 'Devise'; +$_LANGADM['AdminSpecificPriceRule59716c97497eb9694541f7c3d37b1a4d'] = 'Pays'; +$_LANGADM['AdminSpecificPriceRule03937134cedab9078be39a77ee3a48a0'] = 'Groupe'; +$_LANGADM['AdminSpecificPriceRulefc7b398d4af2074cfe73febdb5971153'] = 'A partir de la quantité'; +$_LANGADM['AdminSpecificPriceRule7b28d39c479ba659159b3356616b0a04'] = 'Type de réduction'; +$_LANGADM['AdminSpecificPriceRule9e834f13e35e4edf64863ab414a6217a'] = 'Réduction'; +$_LANGADM['AdminSpecificPriceRule5da618e8e4b89c66fe86e32cdafde142'] = 'A partir de'; +$_LANGADM['AdminSpecificPriceRulee12167aa0a7698e6ebc92b4ce3909b53'] = 'Jusqu\'à'; +$_LANGADM['AdminSpecificPriceRule088db50930cbc7793d4825b7add69e5c'] = 'Règles de prix catalogue'; +$_LANGADM['AdminSpecificPriceRule4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminSpecificPriceRule3e053943605d9e4bf7dd7588ea19e9d2'] = 'Caractères interdits :'; +$_LANGADM['AdminSpecificPriceRuleb91c371eeb88143fd0260f990bcf8d75'] = 'Boutique :'; +$_LANGADM['AdminSpecificPriceRule804ccd6219996d12eda865d1c0707423'] = 'Toutes les boutiques'; +$_LANGADM['AdminSpecificPriceRule77295c7d814e7397c55f64ec06313984'] = 'Devise :'; +$_LANGADM['AdminSpecificPriceRule9c7f56d70e922a61254366964c01c64a'] = 'Toutes les devises'; +$_LANGADM['AdminSpecificPriceRulef64be5eef68442a8f50cf535b92ad3e4'] = 'Pays :'; +$_LANGADM['AdminSpecificPriceRulec3987e4cac14a8456515f0d200da04ee'] = 'Tous les pays'; +$_LANGADM['AdminSpecificPriceRule1aa4c641d6920ddb97a2562f8ec53853'] = 'Groupe :'; +$_LANGADM['AdminSpecificPriceRulee4c4c68c7515704a91d90207067dcbbe'] = 'Tous les groupes'; +$_LANGADM['AdminSpecificPriceRuleb6cc7880260609e8c6702d9e731d2e1e'] = 'A partir de la quantité :'; +$_LANGADM['AdminSpecificPriceRulef2c12ae14393ffc83551d56f32bb03cc'] = 'Prix :'; +$_LANGADM['AdminSpecificPriceRule1e6d57e813355689e9c77e947d73ad8f'] = 'A partir de :'; +$_LANGADM['AdminSpecificPriceRule33caa076f23f453dd4061726f3706325'] = 'Jusqu\'à :'; +$_LANGADM['AdminSpecificPriceRule308c46626713eaa9265c92d5b5d92308'] = 'Type de réduction :'; +$_LANGADM['AdminSpecificPriceRule80a72b968b1a0ca9e2bf3b50161890ae'] = 'Réduction :'; +$_LANGADM['AdminSpecificPriceRule38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminSpecificPriceRule6982640121765cb57f29e6fe170caadc'] = 'Ajouter un nouveau groupe de conditions'; +$_LANGADM['AdminSpecificPriceRule229eb04083e06f419f9ac494329f957d'] = 'Conditions'; +$_LANGADM['AdminSpecificPriceRule56a8a9eb05f9014da51a4f9b57322ac7'] = 'Catégorie :'; +$_LANGADM['AdminSpecificPriceRule643202d7ee8cb01d888e058b5341455a'] = 'Ajouter la condition'; +$_LANGADM['AdminSpecificPriceRulef4a275a931b82e5058bc8ffad8b8e5bd'] = 'Fabricant :'; +$_LANGADM['AdminSpecificPriceRule90bf278fe4384c50cd3ba3eb9d3c5393'] = 'Fournisseur :'; +$_LANGADM['AdminSpecificPriceRule77174410b72decfd0b259961f1f65a8f'] = 'Déclinaisons :'; +$_LANGADM['AdminSpecificPriceRuled6295c05503596b3ed3528aee83e3ef7'] = 'Caractéristiques :'; +$_LANGADM['AdminSpecificPriceRulee43e4f8aab3dbe1127082747a86a2120'] = 'Groupe de conditions'; +$_LANGADM['AdminSpecificPriceRulea1fa27779242b4902f7ae3bdd5c6d508'] = 'Type'; +$_LANGADM['AdminSpecificPriceRule689202409e48743b914713f96d93947c'] = 'Valeur'; +$_LANGADM['AdminSpecificPriceRule1d00e7dce692e8dc3f6877f035e3a616'] = 'OU'; +$_LANGADM['AdminSpecificPriceRule3adbdb3ac060038aa0e6e6c138ef9873'] = 'Catégorie'; +$_LANGADM['AdminSpecificPriceRulec0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricant'; +$_LANGADM['AdminSpecificPriceRuleec136b444eede3bc85639fac0dd06229'] = 'Fournisseur'; +$_LANGADM['AdminSpecificPriceRulef2bbdf9f72c085adc4d0404e370f0f4c'] = 'Déclinaison'; +$_LANGADM['AdminSpecificPriceRule21021ea0e52be8e9c599f4dff41e5be0'] = 'Caractéristique'; $_LANGADM['AdminPPreferences068f80c7519d0528fb08e82137a72131'] = 'Produits'; $_LANGADM['AdminPPreferences90dc497d9d6686ce91ad5c94524020f0'] = 'Mode catalogue:'; $_LANGADM['AdminPPreferences0a2ab45f848348a2626b7491ab6d8cdd'] = 'Lorsque ce paramètre est activé, toutes les fonctionnalités d\'achat sont désactivées'; @@ -1837,60 +1828,6 @@ $_LANGADM['AdminPPreferencese7ed00268dc16aecaac5a60aeb6f4c73'] = 'Ce réglage do $_LANGADM['AdminPPreferences88694e637431115721b5241e652a178f'] = 'Remises des quantités basées sur:'; $_LANGADM['AdminPPreferences68217d833599eb6fb56f9e6d2ca24196'] = 'Comment calculer les remises de quantité'; $_LANGADM['AdminPPreferencesb9208b03bcc9eb4a336258dcdcb66207'] = 'Déclinaisons'; -$_LANGADM['AdminLanguagesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminLanguages8c2857a9ad1d8f31659e35e904e20fa6'] = 'Logo'; -$_LANGADM['AdminLanguages49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminLanguagesad68f9bafd9bf2dcf3865dac55662fd5'] = 'Code ISO'; -$_LANGADM['AdminLanguagese59a41e120686e63cbb743f003bea4e6'] = 'Code language'; -$_LANGADM['AdminLanguages534fd46732986cba0efeda8701592427'] = 'Format de date'; -$_LANGADM['AdminLanguagesc11566e30920ed4786e534e5332d5b87'] = 'Format de date (complet)'; -$_LANGADM['AdminLanguages00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; -$_LANGADM['AdminLanguagesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminLanguagese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminLanguagesd0b04f12f9593c3d35d1bcdf9691f14b'] = 'Quand vous supprimez une langue, TOUTES LES TRADUCTIONS DE CETTE LANGUE SONT SUPPRIMEES. Etes vous sûr de vouloir supprimer cette langue ?'; -$_LANGADM['AdminLanguages950baf75b9fd48b9cb4a3d30ffeda4ef'] = 'Préférences langues'; -$_LANGADM['AdminLanguages7c89197a7b81992ee832cb5a89fa6d9d'] = 'Langue par défaut:'; -$_LANGADM['AdminLanguages6b61093b5fc4585833f0981390993490'] = 'Langue par défaut utilisée dans la boutique'; -$_LANGADM['AdminLanguagescc83a240095b0a0b6e1840bb7d43830c'] = 'Quand vous supprimez un fichier de traductions, toutes les traductions sont supprimées'; -$_LANGADM['AdminLanguages3a08e2e340ab29fd9263af48193cbf8e'] = 'Langues'; -$_LANGADM['AdminLanguages4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminLanguages3af4c1797da60fd50670ddbb669fc0aa'] = 'Code ISO :'; -$_LANGADM['AdminLanguages6b7af0b6d91545318696c648d6b466ac'] = 'Code ISO sur 2 lettres (ex : fr, en, de)'; -$_LANGADM['AdminLanguages01a3b3d8af14e844c49a3a5acc870c6b'] = 'Code language:'; -$_LANGADM['AdminLanguages8bc0a3b0cb05ff731e0fb30f35264898'] = 'Code language complet (ex : en-us, pt-br)'; -$_LANGADM['AdminLanguages104f1a7d59077b514d4105fcee0e42ff'] = 'Format de date:'; -$_LANGADM['AdminLanguages9d03b9a48a9f2f06a9698d1f9484011b'] = 'Format de date, court (par exemple, Ymd, d / m / Y)'; -$_LANGADM['AdminLanguages3253758a8726c828bbbdc0cc8de30410'] = 'Format de date (complet):'; -$_LANGADM['AdminLanguages4728927eaacb4a87f8661de4a791589b'] = 'Format de date, complet (par exemple, Ymd H: i: s, d / m / YH: i)'; -$_LANGADM['AdminLanguagesc907a021c935ae6144fa2ccadfe9360d'] = 'Drapeau :'; -$_LANGADM['AdminLanguages581e03e07411d053e8c0f275f90fcabc'] = 'Charger le drapeau du pays à partir de votre ordinateur'; -$_LANGADM['AdminLanguages70212b3d97d23361e0ec0bc567d7ea30'] = 'Image \"Aucune image\" :'; -$_LANGADM['AdminLanguages2426cdf3330e330b60bb7004015207ba'] = 'Image affichée lorsqu\'aucune image n\'est disponible'; -$_LANGADM['AdminLanguagesaff03422ee7ccc83301ebd200479efc1'] = 'Langue RTL :'; -$_LANGADM['AdminLanguagesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; -$_LANGADM['AdminLanguagese6ced2c612d5024c1a2331cdf96e1c33'] = 'A activer si cette langue s\'écrit de droite à gauche.'; -$_LANGADM['AdminLanguages886815cb03a02e29a28906c196292ba0'] = '(Experimental: votre thème doit être compatible à ce type de language)'; -$_LANGADM['AdminLanguages24a23d787190f2c4812ff9ab11847a72'] = 'Statut :'; -$_LANGADM['AdminLanguages4c85fb98bf7cfd94c638d0f4e4e39b92'] = 'Activer cette langue'; -$_LANGADM['AdminLanguages6ed8662bd9b7b3f59b193010be0c0f4a'] = 'Vérifie si un pack de langue est disponible pour cet ISO code...'; -$_LANGADM['AdminLanguagesf16b5952df8d25ea30b25ff95ee8fedf'] = 'Boutique associée'; -$_LANGADM['AdminLanguages38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminLanguages0eaadb4fcb48a0a0ed7bc9868be9fbaa'] = 'Attention'; -$_LANGADM['AdminLanguages095f8912cc70c6a345714cf35f0595a4'] = 'Fichiers de traduction'; -$_LANGADM['AdminLanguagesce17cda4e805e146bbd1869cdeb844b4'] = 'Fichier de thème'; -$_LANGADM['AdminLanguages6ca38c60dc2544d36428b74669fd9f56'] = 'Fichier d\'e-mail'; -$_LANGADM['AdminLanguagesa2bc582c21c4b24f18a32d703c0a109b'] = 'Vous ne pouvez pas supprimer la langue anglaise car elle est nécessaire au fonctionnement du système, vous pouvez seulement la désactiver.'; -$_LANGADM['AdminLanguages6b6a046a46f8e97af0b9e92ccfda7801'] = 'vous ne pouvez pas effacer la langue par défaut'; -$_LANGADM['AdminLanguagesb2c5e7132e09b09f69a01680fbc6a140'] = 'vous ne pouvez pas effacer la langue actuellement en cours d\'utilisation, modifiez ce paramètre avant de supprimer'; -$_LANGADM['AdminLanguagesbdfa43896989503e31f5d965ac83fb0f'] = 'vous ne pouvez pas effacer la langue actuellement en cours d\'utilisation, modifiez ce paramètre avant de supprimer'; -$_LANGADM['AdminLanguages4674cd987f0dd1d19ebab8671e4611ca'] = 'Mauvais code ISO ou pack de langue non disponible'; -$_LANGADM['AdminLanguages62f569dd8ef1d1651d8a73731788f99e'] = 'Un pack de lang est disponible pour ce code ISO (langue '; -$_LANGADM['AdminLanguagesb77f96511c7d447e59c9361c9e464631'] = 'La version de PrestaShop compatible pour ce langage et votre système est :'; -$_LANGADM['AdminLanguagesced0eeffb26feb6012f17fbebfe4e7f8'] = 'Après avoir créer une langue, vous pouvez importer un pack de langue, que vous pouvez automatiquement télécharger dans Outils > Traductions'; -$_LANGADM['AdminLanguages1044b6aeffc2c0ae2044fd7c1a6296ba'] = 'Aucun pack de langue disponible sur PrestaShop.com pour ce code ISO'; -$_LANGADM['AdminLanguages801ab24683a4a8c433c6eb40c48bcd9d'] = 'Télécharger'; -$_LANGADM['AdminLanguages43a3af99a9049fc327267d6599db63b5'] = 'Ce pack n\'est pas complet et ne peut pas être utilisé.'; -$_LANGADM['AdminLanguagesc8177e39573538431ca4c24841ee3fbe'] = 'Les fichiers manquants sont colorés en rouge'; $_LANGADM['AdminStoresb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminStores59716c97497eb9694541f7c3d37b1a4d'] = 'Pays'; $_LANGADM['AdminStores46a2a41cc6e552044816a2d04634545d'] = 'État'; @@ -1945,6 +1882,60 @@ $_LANGADM['AdminStores1908624a0bca678cd26b99bfd405324e'] = 'La taille du fichier $_LANGADM['AdminStoresf2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; $_LANGADM['AdminStoresad179a1071ebd8b00e0ff4718301dcea'] = 'Heures :'; $_LANGADM['AdminStores9021b488beef18b26de0d3bfd1acaa63'] = 'Exemple: 10h00-21h30'; +$_LANGADM['AdminLanguagesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminLanguages8c2857a9ad1d8f31659e35e904e20fa6'] = 'Logo'; +$_LANGADM['AdminLanguages49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminLanguagesad68f9bafd9bf2dcf3865dac55662fd5'] = 'Code ISO'; +$_LANGADM['AdminLanguagese59a41e120686e63cbb743f003bea4e6'] = 'Code language'; +$_LANGADM['AdminLanguages534fd46732986cba0efeda8701592427'] = 'Format de date'; +$_LANGADM['AdminLanguagesc11566e30920ed4786e534e5332d5b87'] = 'Format de date (complet)'; +$_LANGADM['AdminLanguages00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; +$_LANGADM['AdminLanguagesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminLanguagese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_LANGADM['AdminLanguagesd0b04f12f9593c3d35d1bcdf9691f14b'] = 'Quand vous supprimez une langue, TOUTES LES TRADUCTIONS DE CETTE LANGUE SONT SUPPRIMEES. Etes vous sûr de vouloir supprimer cette langue ?'; +$_LANGADM['AdminLanguages950baf75b9fd48b9cb4a3d30ffeda4ef'] = 'Préférences langues'; +$_LANGADM['AdminLanguages7c89197a7b81992ee832cb5a89fa6d9d'] = 'Langue par défaut:'; +$_LANGADM['AdminLanguages6b61093b5fc4585833f0981390993490'] = 'Langue par défaut utilisée dans la boutique'; +$_LANGADM['AdminLanguagescc83a240095b0a0b6e1840bb7d43830c'] = 'Quand vous supprimez un fichier de traductions, toutes les traductions sont supprimées'; +$_LANGADM['AdminLanguages3a08e2e340ab29fd9263af48193cbf8e'] = 'Langues'; +$_LANGADM['AdminLanguages4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminLanguages3af4c1797da60fd50670ddbb669fc0aa'] = 'Code ISO :'; +$_LANGADM['AdminLanguages6b7af0b6d91545318696c648d6b466ac'] = 'Code ISO sur 2 lettres (ex : fr, en, de)'; +$_LANGADM['AdminLanguages01a3b3d8af14e844c49a3a5acc870c6b'] = 'Code language:'; +$_LANGADM['AdminLanguages8bc0a3b0cb05ff731e0fb30f35264898'] = 'Code language complet (ex : en-us, pt-br)'; +$_LANGADM['AdminLanguages104f1a7d59077b514d4105fcee0e42ff'] = 'Format de date:'; +$_LANGADM['AdminLanguages9d03b9a48a9f2f06a9698d1f9484011b'] = 'Format de date, court (par exemple, Ymd, d / m / Y)'; +$_LANGADM['AdminLanguages3253758a8726c828bbbdc0cc8de30410'] = 'Format de date (complet):'; +$_LANGADM['AdminLanguages4728927eaacb4a87f8661de4a791589b'] = 'Format de date, complet (par exemple, Ymd H: i: s, d / m / YH: i)'; +$_LANGADM['AdminLanguagesc907a021c935ae6144fa2ccadfe9360d'] = 'Drapeau :'; +$_LANGADM['AdminLanguages581e03e07411d053e8c0f275f90fcabc'] = 'Charger le drapeau du pays à partir de votre ordinateur'; +$_LANGADM['AdminLanguages70212b3d97d23361e0ec0bc567d7ea30'] = 'Image \"Aucune image\" :'; +$_LANGADM['AdminLanguages2426cdf3330e330b60bb7004015207ba'] = 'Image affichée lorsqu\'aucune image n\'est disponible'; +$_LANGADM['AdminLanguagesaff03422ee7ccc83301ebd200479efc1'] = 'Langue RTL :'; +$_LANGADM['AdminLanguagesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; +$_LANGADM['AdminLanguagese6ced2c612d5024c1a2331cdf96e1c33'] = 'A activer si cette langue s\'écrit de droite à gauche.'; +$_LANGADM['AdminLanguages886815cb03a02e29a28906c196292ba0'] = '(Experimental: votre thème doit être compatible à ce type de language)'; +$_LANGADM['AdminLanguages24a23d787190f2c4812ff9ab11847a72'] = 'Statut :'; +$_LANGADM['AdminLanguages4c85fb98bf7cfd94c638d0f4e4e39b92'] = 'Activer cette langue'; +$_LANGADM['AdminLanguages6ed8662bd9b7b3f59b193010be0c0f4a'] = 'Vérifie si un pack de langue est disponible pour cet ISO code...'; +$_LANGADM['AdminLanguagesf16b5952df8d25ea30b25ff95ee8fedf'] = 'Boutique associée'; +$_LANGADM['AdminLanguages38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminLanguages0eaadb4fcb48a0a0ed7bc9868be9fbaa'] = 'Attention'; +$_LANGADM['AdminLanguages095f8912cc70c6a345714cf35f0595a4'] = 'Fichiers de traduction'; +$_LANGADM['AdminLanguagesce17cda4e805e146bbd1869cdeb844b4'] = 'Fichier de thème'; +$_LANGADM['AdminLanguages6ca38c60dc2544d36428b74669fd9f56'] = 'Fichier d\'e-mail'; +$_LANGADM['AdminLanguagesa2bc582c21c4b24f18a32d703c0a109b'] = 'Vous ne pouvez pas supprimer la langue anglaise car elle est nécessaire au fonctionnement du système, vous pouvez seulement la désactiver.'; +$_LANGADM['AdminLanguages6b6a046a46f8e97af0b9e92ccfda7801'] = 'vous ne pouvez pas effacer la langue par défaut'; +$_LANGADM['AdminLanguagesb2c5e7132e09b09f69a01680fbc6a140'] = 'vous ne pouvez pas effacer la langue actuellement en cours d\'utilisation, modifiez ce paramètre avant de supprimer'; +$_LANGADM['AdminLanguagesbdfa43896989503e31f5d965ac83fb0f'] = 'vous ne pouvez pas effacer la langue actuellement en cours d\'utilisation, modifiez ce paramètre avant de supprimer'; +$_LANGADM['AdminLanguages4674cd987f0dd1d19ebab8671e4611ca'] = 'Mauvais code ISO ou pack de langue non disponible'; +$_LANGADM['AdminLanguages62f569dd8ef1d1651d8a73731788f99e'] = 'Un pack de lang est disponible pour ce code ISO (langue '; +$_LANGADM['AdminLanguagesb77f96511c7d447e59c9361c9e464631'] = 'La version de PrestaShop compatible pour ce langage et votre système est :'; +$_LANGADM['AdminLanguagesced0eeffb26feb6012f17fbebfe4e7f8'] = 'Après avoir créer une langue, vous pouvez importer un pack de langue, que vous pouvez automatiquement télécharger dans Outils > Traductions'; +$_LANGADM['AdminLanguages1044b6aeffc2c0ae2044fd7c1a6296ba'] = 'Aucun pack de langue disponible sur PrestaShop.com pour ce code ISO'; +$_LANGADM['AdminLanguages801ab24683a4a8c433c6eb40c48bcd9d'] = 'Télécharger'; +$_LANGADM['AdminLanguages43a3af99a9049fc327267d6599db63b5'] = 'Ce pack n\'est pas complet et ne peut pas être utilisé.'; +$_LANGADM['AdminLanguagesc8177e39573538431ca4c24841ee3fbe'] = 'Les fichiers manquants sont colorés en rouge'; $_LANGADM['AdminWarehouses63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; $_LANGADM['AdminWarehouses49ee3087348e8d44e1feda1917443987'] = 'Nom'; $_LANGADM['AdminWarehouses20890e791d8923cfff55ce5331259b34'] = 'Méthode de valorisation'; @@ -2020,15 +2011,9 @@ $_LANGADM['AdminShopc9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder'; $_LANGADM['AdminShop9ea67be453eaccf020697b4654fc021a'] = 'Sauvegarder et rester'; $_LANGADM['AdminShop260cede9d9f86589bb1ca1827cc0ca69'] = 'Aucune URL est configurée pour le magasin : %s'; $_LANGADM['AdminShopa4ea91cd0d1ea33d8113457644dd6157'] = 'cliquez ici'; -$_LANGADM['AdminShopef7de3f485174ff47f061ad27d83d0ee'] = 'sélectionné'; -$_LANGADM['AdminShopb56c3bda503a8dc4be356edb0cc31793'] = 'Tout replier'; -$_LANGADM['AdminShop5e9df908eafa83cb51c0a3720e8348c7'] = 'Tout sélectionner'; -$_LANGADM['AdminShop9747d23c8cc358c5ef78c51e59cd6817'] = 'Tout déselectionner'; -$_LANGADM['AdminShop5ffd7a335dd836b3373f5ec570a58bdc'] = 'Tout déplier'; $_LANGADM['AdminShop61f0fa926f97eafb392975ed79cebb4a'] = 'Nom de la boutique :'; $_LANGADM['AdminShop580cb0ed4cf533163f82c70c7833bb9d'] = 'Groupe de boutique :'; $_LANGADM['AdminShopfedca77235d8e28be78f54c7f960c5a0'] = 'Categorie parente :'; -$_LANGADM['AdminShop67535b8aaa542aa8eff25c53393aa6b9'] = 'Catégories associées :'; $_LANGADM['AdminShop24a23d787190f2c4812ff9ab11847a72'] = 'Statut:'; $_LANGADM['AdminShopb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; $_LANGADM['AdminShop37c0e2b9736bc4cc2005f7be3fd66fe5'] = 'Activer ou désactiver la boutique'; @@ -2061,69 +2046,7 @@ $_LANGADM['AdminShop6416e8cb5fc0a208d94fa7f5a300dbc4'] = 'Entrepôt'; $_LANGADM['AdminShop99104e1966b34f0320d33c5892946a82'] = 'Importer les informations associées (produits, etc.) depuis une autre boutique'; $_LANGADM['AdminShop8409f0f4c1b13db73d10a0f148b67dda'] = 'Importer les informations de la boutique'; $_LANGADM['AdminShopff8be7dc0dfd076e494b88721b257237'] = 'Utilisez cette option pour associer les données (produits, modules etc) de la même façon que la boutique sélectionnée'; -$_LANGADM['AdminShopd0f06038b6b3aa5edc07c7a6fd3ca3f9'] = 'Rechercher une catégorie'; $_LANGADM['AdminShop7e5bf0b306c8d4608fcddb53ce9b1169'] = 'Vous ne pouvez pas changer le groupe de boutiques lorsque vous avez plus d\'une boutique'; -$_LANGADM['AdminGroupsd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminGroupse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminGroupsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminGroups49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminGroups104d9898c04874d0fbac36e125fa1369'] = 'Réduction'; -$_LANGADM['AdminGroupsef53538ae41a651c7f72ab6cb1135d8c'] = 'Membres'; -$_LANGADM['AdminGroupsf870b8a1af52a144a646db03f6f63f7d'] = 'Afficher les prix'; -$_LANGADM['AdminGroups3112209b2dd9b55cf5dbc4865dd15afd'] = 'Date de création'; -$_LANGADM['AdminGroupsd1457b72c3fb323a2671125aef3eab5d'] = '?'; -$_LANGADM['AdminGroups019ec3132cdf8ee0f2e2a75cf5d3e459'] = 'Sexe'; -$_LANGADM['AdminGroups8b5dd64ab8d0b8158906796b53a200e2'] = 'Adresse e-mail'; -$_LANGADM['AdminGroups9c37b7b6ff829e977df287900543ea54'] = 'Date de naissance'; -$_LANGADM['AdminGroups151a3c668742e11d24b6f8e65f7f7ee6'] = 'Date d\'enregistrement'; -$_LANGADM['AdminGroups7442e29d7d53e549b78d93c46b8cdcfc'] = 'Commandes'; -$_LANGADM['AdminGroups00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; -$_LANGADM['AdminGroupsc38266740494aa4980d05c606fccac10'] = 'Groupe clients'; -$_LANGADM['AdminGroups38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; -$_LANGADM['AdminGroups4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminGroups3e053943605d9e4bf7dd7588ea19e9d2'] = 'Réduction'; -$_LANGADM['AdminGroups3b78dd28e2767e0e88e5591abd386d0f'] = 'Réduction (en %) :'; -$_LANGADM['AdminGroups6ad237b9a44e75f0f947efe1d5f1ccaa'] = 'Appliquera automatiquement une réduction sur TOUS les produits de la boutique pour les membres appartenant à ce groupe'; -$_LANGADM['AdminGroups2dc9a383d693a2ded8b1ef832926ea93'] = 'Affichage des prix:'; -$_LANGADM['AdminGroups35756bfdf07485441e0b1dd219025374'] = 'Comment afficher les prix pour ce groupe de client dans le détail de commande (taxes inclues / exclues).'; -$_LANGADM['AdminGroupsbefcac0f9644a7abee43e69f49252ac4'] = 'taxes exclues'; -$_LANGADM['AdminGroupsf4a0d7cb0cd45214c8ca5912c970de13'] = 'taxes inclues'; -$_LANGADM['AdminGroups02d29656d8379684796b01abfd2a9a13'] = 'Afficher les prix :'; -$_LANGADM['AdminGroupsb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactiver'; -$_LANGADM['AdminGroups8fc7cc2b4c8d40941152d7242f353190'] = 'Les clients membres de ce groupe peuvent voir les prix'; -$_LANGADM['AdminGroups718d94783dffc0a3411bb46ed6f99530'] = 'Réduction sur une categorie'; -$_LANGADM['AdminGroups081393e2ffcc53c76d26d808ca416af3'] = 'Modules autorisés :'; -$_LANGADM['AdminGroupseac5d50ef423731cba328369c67d14db'] = 'Modules non autorisée :'; -$_LANGADM['AdminGroupsfa03eb688ad8aa1db593d33dabd89bad'] = 'Racine'; -$_LANGADM['AdminGroupsef7de3f485174ff47f061ad27d83d0ee'] = 'sélectionnés'; -$_LANGADM['AdminGroupsb56c3bda503a8dc4be356edb0cc31793'] = 'Tout replier'; -$_LANGADM['AdminGroups5ffd7a335dd836b3373f5ec570a58bdc'] = 'Tout deplier'; -$_LANGADM['AdminGroups5e9df908eafa83cb51c0a3720e8348c7'] = 'Tout cocher'; -$_LANGADM['AdminGroups9747d23c8cc358c5ef78c51e59cd6817'] = 'Tout de-cocher'; -$_LANGADM['AdminGroupsd0f06038b6b3aa5edc07c7a6fd3ca3f9'] = 'Rechercher une catégorie'; -$_LANGADM['AdminGroups8a8dd5dda85b9e8277d3c5c491ba361d'] = '%s - Toutes les personnes sans compte client ou non authentifiées.'; -$_LANGADM['AdminGroupsa36f97f31dbcb265fb08f5c0626261ea'] = '%s - Clients ayant effectués une commande avec le Guest Checkout.'; -$_LANGADM['AdminGroups6103f2da0d42ee18da16ecc0237e7d71'] = '%s - Toutes les personnes ayant créées un compte sur le site.'; -$_LANGADM['AdminGroups2717e799573bf64c36e334fb14ba060f'] = 'Vous avez maintenant trois groupes de client par défaut.'; -$_LANGADM['AdminGroups4dc140d81cf3f6cb74380715939311b9'] = 'Restrictions sur les modules :'; -$_LANGADM['AdminGroups4c41e0bd957698b58100a5c687d757d9'] = 'Tout sélectionnez'; -$_LANGADM['AdminGroups237c7b6874386141a095e321c9fdfd38'] = 'Tout de-sélectionnez'; -$_LANGADM['AdminGroups28c5141dead257ca0310f55a75a1fdf5'] = 'Cette catégorie existe déjà pour ce groupe'; -$_LANGADM['AdminGroupsa1e7379abfdbc3b8e03506e5489c6110'] = 'Réduction:'; -$_LANGADM['AdminGroups0bcef9c45bd8a48eda1b26eb0c61c869'] = '%'; -$_LANGADM['AdminGroupse7446ea32216e8bf4fa8cb6460b725d6'] = 'Ajouter une reduction sur une catégorie'; -$_LANGADM['AdminGroups29ea3cf72fb288e76bc4310bffabc03e'] = 'Nouvelle réduction par catégorie pour un groupe'; -$_LANGADM['AdminGroups8135a36c44911a6537e22be046849764'] = 'Attention, la réduction appliqué à une catégorie ne se cumule pas avec la réduction global mais la remplace. Le groupe est automatiquement ajoutée à la catégorie.'; -$_LANGADM['AdminGroups0ebf16eea292691fe0616f3258e8c5fb'] = 'Seuls les produits qui ont cette catégorie comme catégorie par défaut serons affectés'; -$_LANGADM['AdminGroups567183b8b1122180690be51cc6df2b74'] = 'Réduction (en %) :'; -$_LANGADM['AdminGroups34ec78fcc91ffb1e54cd85e4a0924332'] = 'Ajouter'; -$_LANGADM['AdminGroups09e0c50aac55c8ef94a811c154294f19'] = '<< Interdire'; -$_LANGADM['AdminGroups23b7863dc4dd693288037ce1ae1e2f82'] = '<< Autoriser'; -$_LANGADM['AdminGroups2e9a5410376da9d88c4623a408de2b58'] = 'Réductions actuelles :'; -$_LANGADM['AdminGroups6adf97f83acf6453d4a6a4b1070f3754'] = 'Aucun'; -$_LANGADM['AdminGroups93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; -$_LANGADM['AdminGroupsbafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; -$_LANGADM['AdminGroupsfb93ea877b4e204a3676b9a27fe423b9'] = 'Clients membres de ce groupe'; $_LANGADM['Helperee77ea46b0c548ed60eadf31bdd68613'] = 'Mauvaise requête SQL'; $_LANGADM['Helpered75712b0eb1913c28a3872731ffd48d'] = 'Dupliquer'; $_LANGADM['Helperbfc18def58cfa50029d149e9b932e974'] = 'Copier aussi les images ?'; @@ -2184,6 +2107,66 @@ $_LANGADM['Helper0470d45929f27e1161330164c423b415'] = 'Choisissez les champs req $_LANGADM['Helpere54b38290c8bdd95e8bc10412c9cc096'] = 'Champs requis'; $_LANGADM['Helper81f32b96f6626b8968e6a0f4a9bce62e'] = 'Sélectionnez les champs requis pour cette section'; $_LANGADM['Helperee9b2f3cf31c23c944b15fb0b33d6a77'] = 'Nom du champs'; +$_LANGADM['AdminGroupsd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminGroupse25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_LANGADM['AdminGroupsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminGroups49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminGroups104d9898c04874d0fbac36e125fa1369'] = 'Réduction'; +$_LANGADM['AdminGroupsef53538ae41a651c7f72ab6cb1135d8c'] = 'Membres'; +$_LANGADM['AdminGroupsf870b8a1af52a144a646db03f6f63f7d'] = 'Afficher les prix'; +$_LANGADM['AdminGroups3112209b2dd9b55cf5dbc4865dd15afd'] = 'Date de création'; +$_LANGADM['AdminGroupsd1457b72c3fb323a2671125aef3eab5d'] = '?'; +$_LANGADM['AdminGroups019ec3132cdf8ee0f2e2a75cf5d3e459'] = 'Sexe'; +$_LANGADM['AdminGroups8b5dd64ab8d0b8158906796b53a200e2'] = 'Adresse e-mail'; +$_LANGADM['AdminGroups9c37b7b6ff829e977df287900543ea54'] = 'Date de naissance'; +$_LANGADM['AdminGroups151a3c668742e11d24b6f8e65f7f7ee6'] = 'Date d\'enregistrement'; +$_LANGADM['AdminGroups7442e29d7d53e549b78d93c46b8cdcfc'] = 'Commandes'; +$_LANGADM['AdminGroups00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; +$_LANGADM['AdminGroupsc38266740494aa4980d05c606fccac10'] = 'Groupe clients'; +$_LANGADM['AdminGroups38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; +$_LANGADM['AdminGroups4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; +$_LANGADM['AdminGroups3e053943605d9e4bf7dd7588ea19e9d2'] = 'Réduction'; +$_LANGADM['AdminGroups3b78dd28e2767e0e88e5591abd386d0f'] = 'Réduction (en %) :'; +$_LANGADM['AdminGroups6ad237b9a44e75f0f947efe1d5f1ccaa'] = 'Appliquera automatiquement une réduction sur TOUS les produits de la boutique pour les membres appartenant à ce groupe'; +$_LANGADM['AdminGroups2dc9a383d693a2ded8b1ef832926ea93'] = 'Affichage des prix:'; +$_LANGADM['AdminGroups35756bfdf07485441e0b1dd219025374'] = 'Comment afficher les prix pour ce groupe de client dans le détail de commande (taxes inclues / exclues).'; +$_LANGADM['AdminGroupsbefcac0f9644a7abee43e69f49252ac4'] = 'taxes exclues'; +$_LANGADM['AdminGroupsf4a0d7cb0cd45214c8ca5912c970de13'] = 'taxes inclues'; +$_LANGADM['AdminGroups02d29656d8379684796b01abfd2a9a13'] = 'Afficher les prix :'; +$_LANGADM['AdminGroupsb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactiver'; +$_LANGADM['AdminGroups8fc7cc2b4c8d40941152d7242f353190'] = 'Les clients membres de ce groupe peuvent voir les prix'; +$_LANGADM['AdminGroups718d94783dffc0a3411bb46ed6f99530'] = 'Réduction sur une categorie'; +$_LANGADM['AdminGroups081393e2ffcc53c76d26d808ca416af3'] = 'Modules autorisés :'; +$_LANGADM['AdminGroupseac5d50ef423731cba328369c67d14db'] = 'Modules non autorisée :'; +$_LANGADM['AdminGroupsef7de3f485174ff47f061ad27d83d0ee'] = 'sélectionnés'; +$_LANGADM['AdminGroupsb56c3bda503a8dc4be356edb0cc31793'] = 'Tout replier'; +$_LANGADM['AdminGroups5ffd7a335dd836b3373f5ec570a58bdc'] = 'Tout deplier'; +$_LANGADM['AdminGroups5e9df908eafa83cb51c0a3720e8348c7'] = 'Tout cocher'; +$_LANGADM['AdminGroups9747d23c8cc358c5ef78c51e59cd6817'] = 'Tout de-cocher'; +$_LANGADM['AdminGroupsd0f06038b6b3aa5edc07c7a6fd3ca3f9'] = 'Rechercher une catégorie'; +$_LANGADM['AdminGroups8a8dd5dda85b9e8277d3c5c491ba361d'] = '%s - Toutes les personnes sans compte client ou non authentifiées.'; +$_LANGADM['AdminGroupsa36f97f31dbcb265fb08f5c0626261ea'] = '%s - Clients ayant effectués une commande avec le Guest Checkout.'; +$_LANGADM['AdminGroups6103f2da0d42ee18da16ecc0237e7d71'] = '%s - Toutes les personnes ayant créées un compte sur le site.'; +$_LANGADM['AdminGroups2717e799573bf64c36e334fb14ba060f'] = 'Vous avez maintenant trois groupes de client par défaut.'; +$_LANGADM['AdminGroups4dc140d81cf3f6cb74380715939311b9'] = 'Restrictions sur les modules :'; +$_LANGADM['AdminGroups4c41e0bd957698b58100a5c687d757d9'] = 'Tout sélectionnez'; +$_LANGADM['AdminGroups237c7b6874386141a095e321c9fdfd38'] = 'Tout de-sélectionnez'; +$_LANGADM['AdminGroups28c5141dead257ca0310f55a75a1fdf5'] = 'Cette catégorie existe déjà pour ce groupe'; +$_LANGADM['AdminGroupsa1e7379abfdbc3b8e03506e5489c6110'] = 'Réduction:'; +$_LANGADM['AdminGroups0bcef9c45bd8a48eda1b26eb0c61c869'] = '%'; +$_LANGADM['AdminGroupse7446ea32216e8bf4fa8cb6460b725d6'] = 'Ajouter une reduction sur une catégorie'; +$_LANGADM['AdminGroups29ea3cf72fb288e76bc4310bffabc03e'] = 'Nouvelle réduction par catégorie pour un groupe'; +$_LANGADM['AdminGroups8135a36c44911a6537e22be046849764'] = 'Attention, la réduction appliqué à une catégorie ne se cumule pas avec la réduction global mais la remplace. Le groupe est automatiquement ajoutée à la catégorie.'; +$_LANGADM['AdminGroups0ebf16eea292691fe0616f3258e8c5fb'] = 'Seuls les produits qui ont cette catégorie comme catégorie par défaut serons affectés'; +$_LANGADM['AdminGroups567183b8b1122180690be51cc6df2b74'] = 'Réduction (en %) :'; +$_LANGADM['AdminGroups34ec78fcc91ffb1e54cd85e4a0924332'] = 'Ajouter'; +$_LANGADM['AdminGroups09e0c50aac55c8ef94a811c154294f19'] = '<< Interdire'; +$_LANGADM['AdminGroups23b7863dc4dd693288037ce1ae1e2f82'] = '<< Autoriser'; +$_LANGADM['AdminGroups2e9a5410376da9d88c4623a408de2b58'] = 'Réductions actuelles :'; +$_LANGADM['AdminGroups6adf97f83acf6453d4a6a4b1070f3754'] = 'Aucun'; +$_LANGADM['AdminGroups93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; +$_LANGADM['AdminGroupsbafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; +$_LANGADM['AdminGroupsfb93ea877b4e204a3676b9a27fe423b9'] = 'Clients membres de ce groupe'; $_LANGADM['AdminImagesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminImages49ee3087348e8d44e1feda1917443987'] = 'Nom'; $_LANGADM['AdminImages32954654ac8fe66a1d09be19001de2d4'] = 'Largeur'; @@ -2607,6 +2590,91 @@ $_LANGADM['AdminModules349838fb1d851d3e2014b9fe39203275'] = 'Installer'; $_LANGADM['AdminModules29c632cf1c7f140b6e86f3af04df48d4'] = 'Installer la selection'; $_LANGADM['AdminModules7245ac07bbd56e6d0f7489a7dddb836f'] = 'Désinstaller la sélection'; $_LANGADM['AdminModulesaf1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories'; +$_LANGADM['AdminCartRulesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; +$_LANGADM['AdminCartRulese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; +$_LANGADM['AdminCartRulesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; +$_LANGADM['AdminCartRulesca0dbad92a874b2f69b549293387925e'] = 'Code'; +$_LANGADM['AdminCartRules502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorité'; +$_LANGADM['AdminCartRules694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantity'; +$_LANGADM['AdminCartRules3728af837fe70019577ddb0ed7125ee5'] = 'Jusqu\'au'; +$_LANGADM['AdminCartRulesec53a8c4f07baed5d8825072c89799be'] = 'Statut'; +$_LANGADM['AdminCartRulesf7de1b71605a10ef04416effa4c6e09e'] = 'Sauvegarder et rester'; +$_LANGADM['AdminCartRulesec9486052d00e24a62363a8d54b74054'] = 'Paiement : Règle Panier'; +$_LANGADM['AdminCartRules29aa46cc3d2677c7e0f216910df600ff'] = 'Frais de port gratuits'; +$_LANGADM['AdminCartRules00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; +$_LANGADM['AdminCartRulesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; +$_LANGADM['AdminCartRulesfc6341fa76fe93b837d748563e0a60c1'] = 'Appliquer une réduction'; +$_LANGADM['AdminCartRulesda73ea07f51049046d527dabd85170e1'] = 'En pourcent (%)'; +$_LANGADM['AdminCartRulesb2f40690858b404ed10e62bdf422c704'] = 'Montant'; +$_LANGADM['AdminCartRules6adf97f83acf6453d4a6a4b1070f3754'] = 'Aucune'; +$_LANGADM['AdminCartRules407d3e36cf562094fc5802889c592fa6'] = 'Valeur (en %)'; +$_LANGADM['AdminCartRulesde11e2e4296bb20487b6430508866e06'] = 'Ne s\'applique pas aux frais de ports'; +$_LANGADM['AdminCartRules689202409e48743b914713f96d93947c'] = 'Valeur'; +$_LANGADM['AdminCartRulesbefcac0f9644a7abee43e69f49252ac4'] = 'HT'; +$_LANGADM['AdminCartRulesf4a0d7cb0cd45214c8ca5912c970de13'] = 'TTC'; +$_LANGADM['AdminCartRules4ec534e482b91898178fa7c6b2235459'] = 'Appliquer la réduction à'; +$_LANGADM['AdminCartRules629b9591d5085cf14edd26c9d376bb3a'] = 'La commande (hors frais de port)'; +$_LANGADM['AdminCartRules1b343552de249749420ddd0fff731e0c'] = 'Un produit spécifique'; +$_LANGADM['AdminCartRules8bab8ac32605948e59399033c7606222'] = 'Le produit le moins cher'; +$_LANGADM['AdminCartRules8cfdac16c15c9b130f26ca1d275035a0'] = 'Les produits sélectionnés'; +$_LANGADM['AdminCartRulesdeb10517653c255364175796ace3553f'] = 'Produit'; +$_LANGADM['AdminCartRules2f73d13f0a878086ce1f9933aed3ac80'] = 'Offrir un cadeau'; +$_LANGADM['AdminCartRules8f36b08eb9ebba13ef930c9dd719ff7c'] = 'Limiter à un seul client'; +$_LANGADM['AdminCartRules5e60b472b57279a00a961e1e93fa0802'] = 'Facultatif : la règle panier sera disponible pour tout le monde si vous laissez ce champ vide.'; +$_LANGADM['AdminCartRulesb07cc2801693b2e722906a3db3d9c447'] = 'Validité'; +$_LANGADM['AdminCartRulesd98a07f84921b24ee30f86fd8cd85c3c'] = 'Du'; +$_LANGADM['AdminCartRules01b6e20344b68835c5ed1ddedf20d531'] = 'au'; +$_LANGADM['AdminCartRules1a6bedf65b0a26f21069a045da86476a'] = 'La période de validité par défaut est de 1 an.'; +$_LANGADM['AdminCartRules9f6e99bdd4184b83dc478d0ab1b4cbf7'] = 'Montant minimum'; +$_LANGADM['AdminCartRules89bea8045e50a337d8ce9849a4e1633c'] = 'Hors frais de port'; +$_LANGADM['AdminCartRulesf7b8d9d5bbba937644a29be14e2654ed'] = 'Frais de port inclus'; +$_LANGADM['AdminCartRules766cbdbec070b7d34fbbda8fceb4832e'] = 'Vous pouvez choisir le montant minimum du panier avec ou sans la TVA et les frais de port.'; +$_LANGADM['AdminCartRules7d058d4cdbc3a0f480bd472b62a0bf53'] = 'Quantité totale disponible'; +$_LANGADM['AdminCartRules9379f6f6c128b182600047d1b3090bc9'] = 'Quantité disponible par utilisateur'; +$_LANGADM['AdminCartRulescd8e66c655070f24cbece45141a505c3'] = 'Sélection de pays'; +$_LANGADM['AdminCartRules7c160ccb02560f1adb25fb6b86d9ebce'] = 'Pays sélectionnés'; +$_LANGADM['AdminCartRules1063e38cb53d94d386f21227fcd84717'] = 'Supprimer'; +$_LANGADM['AdminCartRules7922167568640bb2e57c1592a0b5945b'] = 'Pays non sélectionnés'; +$_LANGADM['AdminCartRulesec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter'; +$_LANGADM['AdminCartRules46b00dccbc9e441b3fcf567d39975f86'] = 'Sélection de transporteurs'; +$_LANGADM['AdminCartRulesbd544756bba84765ddf991b01d7120d1'] = 'Transporteurs sélectionnés'; +$_LANGADM['AdminCartRules3e9619330efb3bed62076dc6138a3889'] = 'Transporteurs non sélectionnés'; +$_LANGADM['AdminCartRulesc3f6634f087fc43dd62b3154e12d050d'] = 'Sélection de groupes de clients'; +$_LANGADM['AdminCartRules1fc6ed753100636e79df3831a3034531'] = 'Groupes sélectionnés'; +$_LANGADM['AdminCartRules9463ae08271e82176b391f6cedb6e82b'] = 'Groupes non sélectionnés'; +$_LANGADM['AdminCartRules177f2cb370199e56c2dcbe5f9cfa17bd'] = 'Compatibilité avec les autres règles paniers'; +$_LANGADM['AdminCartRules53fb9df3249c49828006e57434d02d65'] = 'Règles cumulables'; +$_LANGADM['AdminCartRules06d8251983d901d62c12ed00fe65ddc1'] = 'Règles non cumulables'; +$_LANGADM['AdminCartRules7f36b7eac5872d757b315ed431c4ad92'] = 'Sélection de produits'; +$_LANGADM['AdminCartRulesb8480602357414e1cbe33f7a2bd74c02'] = 'Ajouter un filtre sur les '; +$_LANGADM['AdminCartRules7bc873cba11f035df692c3549366c722'] = '-- Choisissez --'; +$_LANGADM['AdminCartRules068f80c7519d0528fb08e82137a72131'] = 'Produits'; +$_LANGADM['AdminCartRules287234a1ff35a314b5b6bc4e5828e745'] = 'Attributs'; +$_LANGADM['AdminCartRulesaf1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories'; +$_LANGADM['AdminCartRulesc4c95c36570d5a8834be5e88e2f0f6b2'] = 'Informations'; +$_LANGADM['AdminCartRules229eb04083e06f419f9ac494329f957d'] = 'Conditions'; +$_LANGADM['AdminCartRules06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; +$_LANGADM['AdminCartRulesdfd567f87b2186c914dc1e073b000e81'] = 'Règle Panier - Information'; +$_LANGADM['AdminCartRulese85a9cd47c85e7b72394fddb5896fcb5'] = 'Règle Panier - Conditions'; +$_LANGADM['AdminCartRules8b8cec8697e943959a558607beba149f'] = 'Règle Panier - Actions'; +$_LANGADM['AdminCartRulesc9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder'; +$_LANGADM['AdminCartRules9ea67be453eaccf020697b4654fc021a'] = 'Sauvegarder et rester'; +$_LANGADM['AdminCartRules49ee3087348e8d44e1feda1917443987'] = 'Nom'; +$_LANGADM['AdminCartRulese4273ba845eeadc615b5157522c57bf1'] = 'Le nom sera affiché dans le résumé du panier du client ainsi que sur la facture.'; +$_LANGADM['AdminCartRules395d3faac30156f01f4a660f654ddf73'] = 'Facultatif : la règle sera appliquée automatiquement si vous laissez ce champ vide.'; +$_LANGADM['AdminCartRulesf507c7574b6368f942ea9a2b959d8ec9'] = 'Utilisation partielle'; +$_LANGADM['AdminCartRulesbb5fe5cd9c8c778e81b05ef53c166612'] = 'Autorisée'; +$_LANGADM['AdminCartRulesc0902bb307af1c623dc07a6070c33261'] = 'Non autorisée'; +$_LANGADM['AdminCartRulesb51a203cee37965537db75688feaef75'] = 'Ne s\'applique que si la valeur de la réduction est supérieure au montant total du panier.'; +$_LANGADM['AdminCartRulesb979a43669aacb727c63931a8c1052f6'] = 'Si vous n\'autorisez pas les utilisations partielles, la valeur du bon de réduction sera abaissée à la valeur du panier. Si en revanche vous autorisez les utilisations partielles, un nouveau bon sera créé avec le solde.'; +$_LANGADM['AdminCartRulescfc958b9b25cc1ae0033802dc7e9bc0c'] = 'Les règles s\'appliquent au panier par ordre de priorité. Une règle avec une priorité de 1 sera exécutée avant une règle avec une priorité de 2.'; +$_LANGADM['AdminCartRulesb5a7adde1af5c87d7fd797b6245c2a39'] = 'Description'; +$_LANGADM['AdminCartRules720436e03046f962d7d2187aa7b78ea6'] = 'Pour vous uniquement, elle ne sera pas affichée au client.'; +$_LANGADM['AdminCartRules70f9d6d51d3073ade7b099953b5e1ac1'] = 'Le panier doit contenir au moins'; +$_LANGADM['AdminCartRulesd783af682413f6fd5813d865e06b2979'] = 'produit(s) correspondant à '; +$_LANGADM['AdminCartRules961f2247a2070bedff9f9cd8d64e2650'] = 'Choisir'; +$_LANGADM['AdminCartRules91b442d385b54e1418d81adc34871053'] = 'Sélectionnés'; +$_LANGADM['AdminCartRules810460332a38c9ade69a49b057494cad'] = 'Non sélectionnés'; $_LANGADM['AdminReferrersb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminReferrers49ee3087348e8d44e1feda1917443987'] = 'Nom'; $_LANGADM['AdminReferrersae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visiteurs'; @@ -2693,91 +2761,6 @@ $_LANGADM['AdminReferrersc33e404a441c6ba9648f88af3c68a1ca'] = 'Statistiques'; $_LANGADM['AdminReferrers208b51d8918ba3cdd679a5ec275df129'] = 'Filtrer par produit :'; $_LANGADM['AdminReferrersb1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tous'; $_LANGADM['AdminReferrers24c29702dc9c63dedb98e92f3028e068'] = 'Recherche :'; -$_LANGADM['AdminCartRulesd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; -$_LANGADM['AdminCartRulese25f0ecd41211b01c83e5fec41df4fe7'] = 'Supprimer les éléments sélectionnés ?'; -$_LANGADM['AdminCartRulesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; -$_LANGADM['AdminCartRulesca0dbad92a874b2f69b549293387925e'] = 'Code'; -$_LANGADM['AdminCartRules502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorité'; -$_LANGADM['AdminCartRules694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantity'; -$_LANGADM['AdminCartRules3728af837fe70019577ddb0ed7125ee5'] = 'Jusqu\'au'; -$_LANGADM['AdminCartRulesec53a8c4f07baed5d8825072c89799be'] = 'Statut'; -$_LANGADM['AdminCartRulesf7de1b71605a10ef04416effa4c6e09e'] = 'Sauvegarder et rester'; -$_LANGADM['AdminCartRulesec9486052d00e24a62363a8d54b74054'] = 'Paiement : Règle Panier'; -$_LANGADM['AdminCartRules29aa46cc3d2677c7e0f216910df600ff'] = 'Frais de port gratuits'; -$_LANGADM['AdminCartRules00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; -$_LANGADM['AdminCartRulesb9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; -$_LANGADM['AdminCartRulesfc6341fa76fe93b837d748563e0a60c1'] = 'Appliquer une réduction'; -$_LANGADM['AdminCartRulesda73ea07f51049046d527dabd85170e1'] = 'En pourcent (%)'; -$_LANGADM['AdminCartRulesb2f40690858b404ed10e62bdf422c704'] = 'Montant'; -$_LANGADM['AdminCartRules6adf97f83acf6453d4a6a4b1070f3754'] = 'Aucune'; -$_LANGADM['AdminCartRules407d3e36cf562094fc5802889c592fa6'] = 'Valeur (en %)'; -$_LANGADM['AdminCartRulesde11e2e4296bb20487b6430508866e06'] = 'Ne s\'applique pas aux frais de ports'; -$_LANGADM['AdminCartRules689202409e48743b914713f96d93947c'] = 'Valeur'; -$_LANGADM['AdminCartRulesbefcac0f9644a7abee43e69f49252ac4'] = 'HT'; -$_LANGADM['AdminCartRulesf4a0d7cb0cd45214c8ca5912c970de13'] = 'TTC'; -$_LANGADM['AdminCartRules4ec534e482b91898178fa7c6b2235459'] = 'Appliquer la réduction à'; -$_LANGADM['AdminCartRules629b9591d5085cf14edd26c9d376bb3a'] = 'La commande (hors frais de port)'; -$_LANGADM['AdminCartRules1b343552de249749420ddd0fff731e0c'] = 'Un produit spécifique'; -$_LANGADM['AdminCartRules8bab8ac32605948e59399033c7606222'] = 'Le produit le moins cher'; -$_LANGADM['AdminCartRules8cfdac16c15c9b130f26ca1d275035a0'] = 'Les produits sélectionnés'; -$_LANGADM['AdminCartRulesdeb10517653c255364175796ace3553f'] = 'Produit'; -$_LANGADM['AdminCartRules2f73d13f0a878086ce1f9933aed3ac80'] = 'Offrir un cadeau'; -$_LANGADM['AdminCartRules8f36b08eb9ebba13ef930c9dd719ff7c'] = 'Limiter à un seul client'; -$_LANGADM['AdminCartRules5e60b472b57279a00a961e1e93fa0802'] = 'Facultatif : la règle panier sera disponible pour tout le monde si vous laissez ce champ vide.'; -$_LANGADM['AdminCartRulesb07cc2801693b2e722906a3db3d9c447'] = 'Validité'; -$_LANGADM['AdminCartRulesd98a07f84921b24ee30f86fd8cd85c3c'] = 'Du'; -$_LANGADM['AdminCartRules01b6e20344b68835c5ed1ddedf20d531'] = 'au'; -$_LANGADM['AdminCartRules1a6bedf65b0a26f21069a045da86476a'] = 'La période de validité par défaut est de 1 an.'; -$_LANGADM['AdminCartRules9f6e99bdd4184b83dc478d0ab1b4cbf7'] = 'Montant minimum'; -$_LANGADM['AdminCartRules89bea8045e50a337d8ce9849a4e1633c'] = 'Hors frais de port'; -$_LANGADM['AdminCartRulesf7b8d9d5bbba937644a29be14e2654ed'] = 'Frais de port inclus'; -$_LANGADM['AdminCartRules766cbdbec070b7d34fbbda8fceb4832e'] = 'Vous pouvez choisir le montant minimum du panier avec ou sans la TVA et les frais de port.'; -$_LANGADM['AdminCartRules7d058d4cdbc3a0f480bd472b62a0bf53'] = 'Quantité totale disponible'; -$_LANGADM['AdminCartRules9379f6f6c128b182600047d1b3090bc9'] = 'Quantité disponible par utilisateur'; -$_LANGADM['AdminCartRulescd8e66c655070f24cbece45141a505c3'] = 'Sélection de pays'; -$_LANGADM['AdminCartRules7c160ccb02560f1adb25fb6b86d9ebce'] = 'Pays sélectionnés'; -$_LANGADM['AdminCartRules1063e38cb53d94d386f21227fcd84717'] = 'Supprimer'; -$_LANGADM['AdminCartRules7922167568640bb2e57c1592a0b5945b'] = 'Pays non sélectionnés'; -$_LANGADM['AdminCartRulesec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter'; -$_LANGADM['AdminCartRules46b00dccbc9e441b3fcf567d39975f86'] = 'Sélection de transporteurs'; -$_LANGADM['AdminCartRulesbd544756bba84765ddf991b01d7120d1'] = 'Transporteurs sélectionnés'; -$_LANGADM['AdminCartRules3e9619330efb3bed62076dc6138a3889'] = 'Transporteurs non sélectionnés'; -$_LANGADM['AdminCartRulesc3f6634f087fc43dd62b3154e12d050d'] = 'Sélection de groupes de clients'; -$_LANGADM['AdminCartRules1fc6ed753100636e79df3831a3034531'] = 'Groupes sélectionnés'; -$_LANGADM['AdminCartRules9463ae08271e82176b391f6cedb6e82b'] = 'Groupes non sélectionnés'; -$_LANGADM['AdminCartRules177f2cb370199e56c2dcbe5f9cfa17bd'] = 'Compatibilité avec les autres règles paniers'; -$_LANGADM['AdminCartRules53fb9df3249c49828006e57434d02d65'] = 'Règles cumulables'; -$_LANGADM['AdminCartRules06d8251983d901d62c12ed00fe65ddc1'] = 'Règles non cumulables'; -$_LANGADM['AdminCartRules7f36b7eac5872d757b315ed431c4ad92'] = 'Sélection de produits'; -$_LANGADM['AdminCartRulesb8480602357414e1cbe33f7a2bd74c02'] = 'Ajouter un filtre sur les '; -$_LANGADM['AdminCartRules7bc873cba11f035df692c3549366c722'] = '-- Choisissez --'; -$_LANGADM['AdminCartRules068f80c7519d0528fb08e82137a72131'] = 'Produits'; -$_LANGADM['AdminCartRules287234a1ff35a314b5b6bc4e5828e745'] = 'Attributs'; -$_LANGADM['AdminCartRulesaf1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories'; -$_LANGADM['AdminCartRulesc4c95c36570d5a8834be5e88e2f0f6b2'] = 'Informations'; -$_LANGADM['AdminCartRules229eb04083e06f419f9ac494329f957d'] = 'Conditions'; -$_LANGADM['AdminCartRules06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; -$_LANGADM['AdminCartRulesdfd567f87b2186c914dc1e073b000e81'] = 'Règle Panier - Information'; -$_LANGADM['AdminCartRulese85a9cd47c85e7b72394fddb5896fcb5'] = 'Règle Panier - Conditions'; -$_LANGADM['AdminCartRules8b8cec8697e943959a558607beba149f'] = 'Règle Panier - Actions'; -$_LANGADM['AdminCartRulesc9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder'; -$_LANGADM['AdminCartRules9ea67be453eaccf020697b4654fc021a'] = 'Sauvegarder et rester'; -$_LANGADM['AdminCartRules49ee3087348e8d44e1feda1917443987'] = 'Nom'; -$_LANGADM['AdminCartRulese4273ba845eeadc615b5157522c57bf1'] = 'Le nom sera affiché dans le résumé du panier du client ainsi que sur la facture.'; -$_LANGADM['AdminCartRules395d3faac30156f01f4a660f654ddf73'] = 'Facultatif : la règle sera appliquée automatiquement si vous laissez ce champ vide.'; -$_LANGADM['AdminCartRulesf507c7574b6368f942ea9a2b959d8ec9'] = 'Utilisation partielle'; -$_LANGADM['AdminCartRulesbb5fe5cd9c8c778e81b05ef53c166612'] = 'Autorisée'; -$_LANGADM['AdminCartRulesc0902bb307af1c623dc07a6070c33261'] = 'Non autorisée'; -$_LANGADM['AdminCartRulesb51a203cee37965537db75688feaef75'] = 'Ne s\'applique que si la valeur de la réduction est supérieure au montant total du panier.'; -$_LANGADM['AdminCartRulesb979a43669aacb727c63931a8c1052f6'] = 'Si vous n\'autorisez pas les utilisations partielles, la valeur du bon de réduction sera abaissée à la valeur du panier. Si en revanche vous autorisez les utilisations partielles, un nouveau bon sera créé avec le solde.'; -$_LANGADM['AdminCartRulescfc958b9b25cc1ae0033802dc7e9bc0c'] = 'Les règles s\'appliquent au panier par ordre de priorité. Une règle avec une priorité de 1 sera exécutée avant une règle avec une priorité de 2.'; -$_LANGADM['AdminCartRulesb5a7adde1af5c87d7fd797b6245c2a39'] = 'Description'; -$_LANGADM['AdminCartRules720436e03046f962d7d2187aa7b78ea6'] = 'Pour vous uniquement, elle ne sera pas affichée au client.'; -$_LANGADM['AdminCartRules70f9d6d51d3073ade7b099953b5e1ac1'] = 'Le panier doit contenir au moins'; -$_LANGADM['AdminCartRulesd783af682413f6fd5813d865e06b2979'] = 'produit(s) correspondant à '; -$_LANGADM['AdminCartRules961f2247a2070bedff9f9cd8d64e2650'] = 'Choisir'; -$_LANGADM['AdminCartRules91b442d385b54e1418d81adc34871053'] = 'Sélectionnés'; -$_LANGADM['AdminCartRules810460332a38c9ade69a49b057494cad'] = 'Non sélectionnés'; $_LANGADM['AdminPerformancef8d698aea36fcbead2b9d5359ffca76f'] = 'Smarty'; $_LANGADM['AdminPerformancefdf1da3a7cc0e1cb2ef78f7b5658f422'] = 'Cache des templates'; $_LANGADM['AdminPerformance938a37a70efa8f8b7adf65d5e01442d5'] = 'Ne jamais compiler le cache'; @@ -3872,7 +3855,6 @@ $_LANGADM['AdminProducts066e6b788175857e5869ca3fb070760d'] = 'Les références p $_LANGADM['AdminProducts6e04b380975aea1bec4ba4e746e8c200'] = 'Les entrepôts et les localisation pour ce produit ont été mis à jour'; $_LANGADM['AdminProducts0a00c22a3a2a56e14c21e34d92f5a14b'] = 'Merci de choisir la boutique que vous souhaitez configurer'; $_LANGADM['AdminProductsa6cb368dedb16a6bed8a1f3b14a8f2a9'] = 'Vous devez sauvegarder ce produit avant de gérer la comptabilité de celui-ci.'; -$_LANGADM['AdminProductsfa03eb688ad8aa1db593d33dabd89bad'] = 'Racine'; $_LANGADM['AdminProductsef7de3f485174ff47f061ad27d83d0ee'] = 'sélectionnée(s)'; $_LANGADM['AdminProductsb56c3bda503a8dc4be356edb0cc31793'] = 'Tout replier'; $_LANGADM['AdminProducts5ffd7a335dd836b3373f5ec570a58bdc'] = 'Tout étendre'; @@ -3960,6 +3942,9 @@ $_LANGADM['AdminProductsec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter'; $_LANGADM['AdminProducts9d38722749ec2101e437414ac2a743f9'] = 'Documents joints pour ce produit'; $_LANGADM['AdminProducts1063e38cb53d94d386f21227fcd84717'] = 'Supprimer'; $_LANGADM['AdminProductsef43555f81249c93872352f5501bfedd'] = 'Mettre à jour les documents joints'; +$_LANGADM['AdminProducts1245fb9eadb8049b570d7bdc0936aa55'] = 'Modifier cette déclinaison'; +$_LANGADM['AdminProductsf9c128cbc52bb845834c0d3e62b424ea'] = 'La ligne en bleu est la déclinaison par défaut.'; +$_LANGADM['AdminProducts55110f4c6a2c90b143c6fcd295cb7bc7'] = 'Une déclinaison par défaut doit être désignée pour chaque produit.'; $_LANGADM['AdminProductsea00d1e1f462e759dc8e9a4ac8d1f6ab'] = 'S\'il vous plaît veuillez choisir un groupe'; $_LANGADM['AdminProductseed3651230e6fea831d760fe3686d4e6'] = 'S\'il vous plaît veuillez choisir un attribut'; $_LANGADM['AdminProductsa304083449ba2100362067209edc9369'] = 'Vous ne pouvez ajouter qu\'une seule déclinaison par type de groupe';